body {
    background-color: #000; /* Black background */
    color: #c9d69f; /* Green text */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Top Container with Photo */
.top-container {
    padding: 50px 0; /* Add some padding */
    background-color: #000; /* Black background */
    text-align: center;
}

.vortex-image {
    width: 100%; /* Full width */
    max-width: 300px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #000; /* Black background */
}

.about-section h2 {
    color: #f07f3d; /* Orange */
    font-size: clamp(2rem, 6vw, 3rem); /* Responsive font size */
    text-align: center;
    margin-bottom: 20px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #c9d69f; /* Green text */
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #000; /* Black background */
}

.contact-section h2 {
    color: #f07f3d; /* Orange */
    font-size: clamp(2rem, 6vw, 3rem); /* Responsive font size */
    text-align: center;
    margin-bottom: 20px;
}

.contact-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #c9d69f; /* Green text */
    text-align: center;
}

.contact-section a {
    color: #42bff6; /* Blue accent */
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}
