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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #25324B;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,173,181,0.10) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(0,173,181,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(91,182,201,0.06) 0%, transparent 45%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(29, 78, 216, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #e3e8ee;
    box-shadow: 0 4px 24px rgba(60, 120, 180, 0.06);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #5bb6c9, #7ea7c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 18px rgba(91, 182, 201, 0.08);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #3a4a5d;
    font-weight: 500;
    transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}

.nav-links a:hover {
    color: #5bb6c9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #b2d6e6, #7ea7c7);
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Enhanced Glassmorphism and Visual Effects */

/* Glass Card Base Class */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid #e3e8ee;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.07);
}

/* Enhanced Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 25% 25%, rgba(91, 182, 201, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(126, 167, 199, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #fafdff 0%, #f3f6fa 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 173, 181, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 173, 181, 0.1), rgba(120, 119, 198, 0.1));
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #25324B 0%, #6a8ca3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 0 18px rgba(120, 150, 180, 0.10);
}

.hero p {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #e6eef4, #c7d4e2);
    color: #25324B;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(90deg, #c7d4e2, #e6eef4);
    color: #1a2a3a;
    box-shadow: 0 4px 16px rgba(120, 150, 180, 0.13);
}

/* Contact Button */
.contact-button {
    display: inline-block;
    background: linear-gradient(90deg, #e6eef4, #c7d4e2);
    color: #25324B;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: linear-gradient(90deg, #c7d4e2, #e6eef4);
    color: #1a2a3a;
    box-shadow: 0 4px 16px rgba(120, 150, 180, 0.13);
}

/* Enhanced Contact Section */
.contact {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 173, 181, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, rgba(248, 250, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: #1a1a1a;
}

.contact .section-subtitle {
    color: #666;
}

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Enhanced Typography */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #25324B 0%, #6a8ca3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e6eef4, #c7d4e2);
    border-radius: 2px;
}

/* Enhanced News Section */
.news {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, #ffffff 100%);
    position: relative;
}

.news::before {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 173, 181, 0.08), rgba(120, 119, 198, 0.08));
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

/* Team Section */
.team {
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 173, 181, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(120, 119, 198, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 173, 181, 0.08), rgba(120, 119, 198, 0.08));
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid #e3e8ee;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.07);
    transition: box-shadow 0.3s, transform 0.3s;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.8s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(120, 150, 180, 0.13);
    border-color: #c7d4e2;
    transform: translateY(-8px) scale(1.02);
}

.team-image {
    margin-bottom: 1.5rem;
}

/* Product Section */
.product {
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 173, 181, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.product::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(0, 173, 181, 0.1));
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

/* How It Works Section */
.how-it-works {
    margin-top: 5rem;
    padding: 4rem 0;
    position: relative;
}

.how-it-works-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #00adb5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.how-it-works-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e6eef4, #c7d4e2);
    border-radius: 2px;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #e3e8ee;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10);
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.8s ease;
}

.workflow-step:hover::before {
    left: 100%;
}

.workflow-step:hover {
    box-shadow: 0 6px 18px rgba(120, 150, 180, 0.13);
    border-color: #c7d4e2;
    transform: translateY(-8px) scale(1.02);
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #6a8ca3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10);
    border: 1.5px solid #c7d4e2;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, color 0.3s;
}

.step-number::before {
    display: none;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive breakpoints for workflow steps */
@media (max-width: 1024px) {
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .workflow-step {
        padding: 1.2rem;
        margin: 0 10px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .workflow-step {
        margin: 0 5px;
        padding: 1rem;
    }
}

/* Mission Section */
.mission {
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 173, 181, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(120, 119, 198, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.mission-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s ease;
    z-index: 0;
}

.mission-content:hover::before {
    left: 100%;
}

.mission-content:hover {
    box-shadow: 0 6px 18px rgba(120, 150, 180, 0.13);
    border-color: #c7d4e2;
}

/* Unified Section Backgrounds */
.mission,
.product,
.team,
.contact,
.news {
    background: 
        radial-gradient(circle at 20% 20%, rgba(91, 182, 201, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(126, 167, 199, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #fafdff 0%, #f3f7fa 100%);
    position: relative;
    overflow: hidden;
}

.mission::before,
.product::before,
.team::before,
.contact::before,
.news::before {
    display: none;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255,255,255,0.85);
    border: 1px solid #e3e8ee;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.07);
    transition: box-shadow 0.3s, transform 0.3s;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    box-shadow: 0 6px 18px rgba(120, 150, 180, 0.13);
    transform: translateY(-8px) scale(1.02);
    border-color: #c7d4e2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(91,182,201,0.4), rgba(126,167,199,0.4));
    color: #6a8ca3;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10);
   
    font-size: 2rem;
    color: white;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.news-date {
    color: #00adb5;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.news-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #25324B;
    color: #e3e8ee;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero Section Mobile */
    .hero {
        padding: 3rem 0;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Sections Mobile */
    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* News Section Mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-item {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .news-item h3 {
        font-size: 1.2rem;
    }

    /* Contact Section Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .team-card {
        padding: 2rem;
        margin: 0 10px;
    }

    .team-image-placeholder {
        width: 100px;
        height: 100px;
    }

    .team-avatar {
        font-size: 2.5rem;
    }

    .team-info h3 {
        font-size: 1.3rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

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

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

    .section-title {
        font-size: 1.6rem;
    }

    .feature-card,
    .news-item {
        margin: 0 5px;
        padding: 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .team-card {
        margin: 0 5px;
        padding: 1.5rem;
    }

    .team-image-placeholder {
        width: 80px;
        height: 80px;
    }

    .team-avatar {
        font-size: 2rem;
    }
}

/* Desktop Navigation (hidden mobile toggle) */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Team Photo Styling */
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(120, 150, 180, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(120, 150, 180, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.team-role {
    color: #6a8ca3;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
}