/* Reset & Base Styles */
:root {
    --primary-color: #D92C4B;
    --primary-hover: #b91c3b;
    --text-color: #333333;
    --heading-color: #1A1A1A;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #121212;
    --white: #ffffff;
    --highlight-green: #2ecc71; /* For 'Seeking' style highlights */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --spacing-unit: 1rem;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(217, 44, 75, 0.35);
    outline-offset: 3px;
    border-radius: 6px;
}

main, .page-main {
    flex: 1 0 auto;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.login-btn {
    margin-right: 1rem;
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    margin: 5px 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken for text readability */
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-btn-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 44, 75, 0.4);
}

.cta-btn-large:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 44, 75, 0.6);
}

.elite {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.elite-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 3rem;
}

.elite-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.elite-subtitle {
    font-size: 1.1rem;
    color: #555;
}

.elite-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.elite-panel {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 2.25rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.elite-lead {
    font-size: 1.05rem;
    color: #222;
}

.elite-copy p + p {
    margin-top: 1rem;
}

.elite-copy {
    line-height: 1.7;
}

.elite-cta {
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.elite-cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(217, 44, 75, 0.35);
}

.elite-cta-secondary:hover {
    background: rgba(217, 44, 75, 0.08);
    transform: translateY(-2px);
}

.elite-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.25rem;
}

.elite-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.25);
    color: #1d6a3b;
    font-weight: 700;
    font-size: 0.9rem;
}

.elite-pillars h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.elite-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.elite-card {
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 1.25rem 1.25rem 1.1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.elite-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.elite-card p {
    color: #555;
    font-size: 0.98rem;
}

.elite-steps {
    margin-top: 3.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid #eee;
}

.elite-steps-header {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 1rem;
    margin: 0 0 1.5rem;
}

.elite-steps-header h3 {
    font-size: 2rem;
    margin-bottom: 0;
}

.elite-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding-left: 0;
    list-style: none;
}

.elite-step {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.elite-step-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(217, 44, 75, 0.1);
    border: 1px solid rgba(217, 44, 75, 0.25);
    color: var(--primary-color);
    font-weight: 800;
    font-family: var(--font-sans);
}

.elite-step-body h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.elite-step-body p {
    color: #555;
    font-size: 0.98rem;
}

.roles {
    padding: 5.5rem 0;
    background: var(--white);
}

.roles-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 2.5rem;
}

.roles-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.roles-subtitle {
    color: #555;
    font-size: 1.1rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.role-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-rows: auto 1fr;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.role-media {
    position: relative;
    aspect-ratio: 16 / 11;
    background: #f1f1f1;
}

.role-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.role-body h3 {
    font-size: 1.6rem;
    margin-bottom: 0.85rem;
}

.role-tagline {
    color: #555;
    margin-bottom: 1.4rem;
    font-size: 1.02rem;
}

.role-points {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.25rem;
    color: #444;
}

.role-points li {
    margin-bottom: 0.65rem;
    position: relative;
    padding-left: 1.35rem;
}

.role-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(217, 44, 75, 0.9);
    position: absolute;
    left: 0;
    top: 0.55em;
}

.role-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.curated {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    border-top: 1px solid #efefef;
}

.curated-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.curated-image img {
    width: 100%;
    height: clamp(360px, 45vw, 560px);
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.curated-accordion details {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1rem;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.curated-accordion details:last-child {
    margin-bottom: 0;
}

.curated-accordion summary {
    font-size: 1.35rem;
}

.curated-detail {
    margin-top: 0.9rem;
}

.curated-detail p {
    color: #555;
    margin-bottom: 0.75rem;
}

.signup-banner {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    background: #0b0b0b;
}

.signup-banner-bg {
    position: absolute;
    inset: 0;
}

.signup-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.signup-banner-content {
    position: relative;
    padding: 0;
    max-width: 760px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}

.signup-banner-content h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 0.9rem;
}

.signup-banner-content p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.signup-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.signup-banner-actions .text-link {
    color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.35);
}

.signup-banner-actions .text-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.contact-hero .page-hero-inner {
    position: relative;
}

.contact-hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.contact-info h2 {
    font-size: 2rem;
}

.contact-info p + p {
    margin-top: 1rem;
}

.contact-points {
    margin-top: 1.25rem;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.contact-points li {
    margin-bottom: 0;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    color: #444;
}

.contact-points li strong {
    color: var(--heading-color);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #666;
    margin-bottom: 1.25rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9b9b9b;
}

.contact-form .cta-btn {
    width: 100%;
    text-align: center;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 3px solid rgba(217, 44, 75, 0.25);
    outline-offset: 2px;
    border-color: rgba(217, 44, 75, 0.45);
}

.page-main {
    padding-top: 70px;
}

.page-hero {
    padding: 5rem 0 3.5rem;
    background: radial-gradient(1000px 420px at 50% 0%, rgba(217, 44, 75, 0.18) 0%, rgba(217, 44, 75, 0) 60%), linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-lead {
    margin-top: 0.75rem;
    font-size: 1.15rem;
    color: #555;
}

.faq-page .page-hero-inner h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.faq-page .page-lead {
    font-size: 1.05rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page .page-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.faq-page details {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-bottom: none;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    padding-bottom: 1.1rem;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.faq-page summary {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--heading-color);
}

.faq-page summary::after {
    color: #666;
}

.faq-page details p {
    color: #555;
    font-size: 1rem;
}

.page-cta {
    margin-top: 1.5rem;
}

.page-section {
    padding: 4.75rem 0;
}

.page-section-alt {
    background: var(--bg-light);
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
    margin-top: 1.75rem;
}

.two-col-content p + p {
    margin-top: 1rem;
}

.two-col-content h2 {
    margin-bottom: 1rem;
}

.two-col-media {
    align-self: stretch;
}

.two-col-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-grid {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding-left: 0;
    list-style: none;
}

.feature-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #555;
}

.page-cta-band {
    padding: 5rem 0;
    background: radial-gradient(1200px 500px at 50% 0%, rgba(46, 204, 113, 0.18) 0%, rgba(46, 204, 113, 0) 60%), linear-gradient(180deg, var(--bg-dark) 0%, #0b0b0b 100%);
    color: var(--white);
}

.page-cta-band-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-cta-band-inner h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.page-cta-band-inner p {
    color: #cfcfcf;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Mindset Section */
.mindset {
    padding: 5rem 20px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.highlight-text {
    color: var(--primary-color);
    font-style: italic;
}

.mindset-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.mindset-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.mindset-item.reverse {
    flex-direction: row-reverse;
}

.mindset-img {
    flex: 0 0 44%;
    max-width: 44%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mindset-item div, .mindset-item .text-content {
    flex: 1;
}

.mindset-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    border-bottom-color: var(--primary-color);
}

.cta-wrapper {
    margin-top: 4rem;
    text-align: center;
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.content-list ul,
.content-list ol {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 1rem;
}

.content-list {
    text-align: left;
}

.content-list ol {
    list-style: decimal;
}

.content-list li {
    margin-bottom: 0.75rem;
}

.legal-page .content-list {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.75;
}

.legal-page .content-list h2 {
    font-size: 2rem;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
}

.legal-page .content-list h2:first-child {
    margin-top: 0;
}

.legal-page .content-list p {
    margin-top: 0.9rem;
    color: #555;
}

.legal-page .content-list ul,
.legal-page .content-list ol {
    margin-top: 0.85rem;
    margin-bottom: 1.5rem;
}

.legal-page .content-list li {
    margin-bottom: 0.6rem;
}

.cta-btn-medium {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-btn-medium:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(217, 44, 75, 0.25);
}

.elite-cta-secondary:hover {
    background: rgba(217, 44, 75, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(217, 44, 75, 0.45);
    box-shadow: none;
}

.cta-btn-medium:focus-visible {
    outline: 3px solid rgba(217, 44, 75, 0.35);
    outline-offset: 4px;
}

/* Testimonials */
.testimonials {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
    background: radial-gradient(900px 420px at 50% 0%, rgba(217, 44, 75, 0.2) 0%, rgba(11, 11, 11, 0) 55%), linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
}

.testimonials h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Benefits */
.benefits {
    padding: 6rem 20px;
}

.highlight-bg {
    background-color: var(--highlight-green); /* Mimicking the green highlight style */
    color: var(--white);
    padding: 0 5px;
    border-radius: 4px;
}

.benefits-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefits-list {
    flex: 1;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.benefits-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.benefits-image img {
    width: min(440px, 100%);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 84px 84px 18px 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.highlight-box {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    margin: 2rem 0;
}

/* Mission */
.mission {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 5rem 20px;
    text-align: center;
}

.mission h2 {
    color: var(--white);
    font-size: 2.15rem;
    margin-bottom: 1rem;
}

.mission p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    color: #cccccc;
}

.mission-lead {
    max-width: 820px;
    margin: 0 auto 2rem;
    font-family: var(--font-serif);
    font-size: 1.55rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission .cta-btn-small {
    font-size: 1.1rem;
    padding: 0.8rem 2.4rem;
}

.cta-btn-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 700;
}

/* Values */
.values {
    padding: 6rem 20px;
}

.values-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.values-image {
    flex: 1;
}

.values-image img {
    border-radius: 50%; /* Circle shape */
    aspect-ratio: 1/1;
    object-fit: cover;
}

.values-list {
    flex: 1;
    padding-top: 2rem;
}

details {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    cursor: pointer;
}

summary {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-color);
    list-style: none; /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-color);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: var(--text-color);
}

/* Footer */
.site-footer {
    background-color: var(--bg-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid #eaeaea;
    margin-top: auto;
}

.blog-page .site-footer { padding-bottom: 0; }

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 2;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-links-group {
    flex: 1;
    min-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-links-group h4 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 1.5rem;
}

.footer-links-group ul li {
    margin-bottom: 0.8rem;
}

.footer-links-group a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icons a {
    color: var(--heading-color);
    font-weight: 700;
}

.footer-bottom .social-icons {
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide desktop menu */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .elite {
        padding: 4.5rem 0;
    }

    .elite-grid {
        grid-template-columns: 1fr;
    }

    .elite-panel {
        padding: 1.5rem;
    }

    .elite-header h2 {
        font-size: 2.1rem;
    }

    .elite-steps-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .elite-steps-grid {
        grid-template-columns: 1fr;
    }

    .roles {
        padding: 4.5rem 0;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .curated {
        padding: 4.75rem 0;
    }

    .curated-layout {
        grid-template-columns: 1fr;
    }

    .signup-banner {
        padding: 4.5rem 0;
    }

    .signup-banner-content {
        padding: 0;
    }

    .signup-banner-content h2 {
        font-size: 2rem;
    }

    .mission h2 {
        font-size: 1.95rem;
    }

    .mission-lead {
        font-size: 1.3rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 4.25rem 0 3rem;
    }

    .faq-page .page-hero-inner h1 {
        font-size: 2.4rem;
    }

    .faq-page summary {
        font-size: 1.05rem;
    }

    .legal-page .content-list {
        font-size: 1rem;
    }

    .legal-page .content-list h2 {
        font-size: 1.75rem;
        margin-top: 1.75rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .mindset-item {
        flex-direction: column;
        text-align: center;
    }

    .mindset-img {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .mindset-item.reverse {
        flex-direction: column;
    }

    .benefits-layout {
        flex-direction: column-reverse;
    }
    
    .values-grid {
        flex-direction: column;
    }
    
    .footer-top {
        flex-direction: column;
    }
}
