* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #1a2526;
}

header {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}

nav ul li a:hover::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #00ff00;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/site.images/beach-with-coconut-tree-sunset.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero .underline {
    width: 50px;
    height: 3px;
    background: #00ff00;
    margin: 0 auto 1rem;
}

.hero p {
    font-size: 1.5rem;
}

.about {
    padding: 3rem 2rem;
    background: #1a2526;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text .underline {
    width: 50px;
    height: 3px;
    background: #00ff00;
    margin-bottom: 1rem;
}

.services {
    padding: 3rem 2rem;
    background: #1a2526;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services .underline {
    width: 50px;
    height: 3px;
    background: #00ff00;
    margin: 0 auto 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #2a3a3b;
    padding: 1rem;
    border-radius: 10px;
    width: 30%;
}

.service-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
}

.blog {
    padding: 3rem 2rem;
    background: #1a2526;
    text-align: center;
}

.blog h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog .underline {
    width: 50px;
    height: 3px;
    background: #00ff00;
    margin: 0 auto 1rem;
}

.blog blockquote {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #ccc;
}

.blog cite {
    display: block;
    font-size: 1rem;
    color: #00ff00;
    margin-top: 0.5rem;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.blog-post {
    background: #2a3a3b;
    padding: 1rem;
    border-radius: 10px;
    width: 45%;
}

.blog-post img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.blog-post h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-post p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.blog-post .read-more {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
}

.blog-post .read-more:hover {
    text-decoration: underline;
}

.newsletter {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    padding: 30px;
    background-color: #2a3a3b;
    border-radius: 10px;
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter p {
    margin-bottom: 25px;
    color: #a3e4e0;
}

.newsletter-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #00ff00;
    background-color: #1a2526;
    color: #a3e4e0;
    border-radius: 5px 0 0 5px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: #00ff00;
    color: #000;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button:hover {
    background-color: #a3e4e0;
}

footer {
    position: relative;
    margin-top: 60px;
    background: linear-gradient(to right, #00ff00, #a3e4e0);
    padding: 60px 20px 20px 20px;
    color: #000;
    text-align: center;
    overflow: hidden;
}

footer p {
    font-size: 1.1rem;
    color: #000;
}

.wave {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 200%;
    height: 120px;
    background: url('https://svgshare.com/i/uKc.svg') repeat-x;
    background-size: contain;
    animation: waveMove 10s linear infinite;
    opacity: 0.5;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 300px;
    }

    .service-card img {
        width: 120px;
        height: 120px;
    }

    .blog-container {
        flex-direction: column;
        align-items: center;
    }

    .blog-post {
        width: 100%;
        max-width: 300px;
    }

    .blog-post img {
        max-height: 150px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 5px;
    }
}


    /* Existing styles.css content (not repeated here for brevity) */

/* Profile Links Styling for Team Page */
.profile-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.profile-btn {
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.profile-btn.contact-us {
    background-color: #00ff00;
    color: #000;
}

.profile-btn.contact-us:hover {
    background-color: #a3e4e0;
}

/* Ensure buttons are responsive */
@media (max-width: 768px) {
    .profile-links {
        flex-direction: column;
        align-items: center;
    }

    .profile-btn {
        width: 100%;
        max-width: 150px;
        text-align: center;
    }
}
