/* Using Nimbus - Empower Your Team Styles */
body {
    background-color: #FAFAFA;
}

/* Main Layout */
main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
    padding-top: 80px;
}

/* Sidebar Styles */
.sidebar {
    width: 200px;
    flex-shrink: 0;
}

.sidebar-nav {
    position: sticky;
    top: 90px;
}

.sidebar-link {
    display: block;
    padding: 12px 20px;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: #F0F0F0;
    color: #0066FF;
    text-decoration: none;
}

.sidebar-link.active {
    background: #E6F0FF;
    color: #0066FF;
}

/* Main Content */
.main-content {
    flex: 1;
    padding-bottom: 80px;
}

/* Page Header */
.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Team Sections */
.team-section {
    margin-bottom: 100px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse .section-text {
    direction: ltr;
}

.section-text {
    position: relative;
}

.section-number {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 4rem;
    font-weight: 700;
    color: #E6F0FF;
    z-index: -1;
}

.section-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.section-text p:first-of-type {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
}

/* Section Illustrations */
.section-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.section-illustration img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Metrics Section */
.metrics-section {
    margin: 80px 0;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #0066FF;
}

.metric-label {
    font-size: 1.125rem;
    color: #666;
}

/* CTA Section */
.teams-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    margin-top: 80px;
}

.teams-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.teams-cta p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-large {
    font-size: 1.25rem;
    padding: 18px 48px;
}

.cta-illustration {
    margin-top: 3rem;
}

.cta-illustration img {
    max-width: 400px;
    height: auto;
}

/* Active navigation state */
.nav-links a.active {
    color: #0066FF;
    font-weight: 600;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    main {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        position: static;
        padding-bottom: 1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-content.reverse {
        direction: ltr;
    }
    
    .section-illustration {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-text h2 {
        font-size: 1.8rem;
    }
    
    .section-number {
        font-size: 3rem;
        top: -30px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
}