/* Sections */
.section {
    padding: 5rem 0;
}

.section-white {
    background: var(--background);
}

.section-muted {
    background: var(--muted);
}

.section-gradient {
    background: linear-gradient(135deg, hsl(195, 75%, 35%), hsl(195, 75%, 50%));
    position: relative;
    overflow: hidden;
}

.section-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--background);
    max-width: 48rem;
    margin: 0 auto;
}

.section-subtitle-dark {
    font-size: 1.25rem;
    color: var(--foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Advisors Section */
.advisors-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advisors-inner {
    width: 100%;
    max-width: 48rem;
    text-align: center;
}

.advisors-inner .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.advisors-body {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.advisors-cta {
    display: inline-flex;
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .advisors-inner {
        padding: 0 1rem;
    }

    .advisors-body {
        font-size: 1rem;
    }

    .advisors-cta {
        width: 100%;
        justify-content: center;
    }
}

