:root {
    --dark-green: #1b3022;
    --gold: #d4af37;
    --navy: #0a1118;
    --white: #ffffff;
    --light-bg: #fdfaf6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #1a1a1a; }
h1, h2, h3, h4, .gold-text { font-family: 'Playfair Display', serif; }

/* FIX FOR OVERSIZED IMAGES */
img { max-width: 100%; height: auto; display: block; }

.navbar { 
    position: sticky; top: 0; width: 100%; padding: 1rem 2rem; 
    background: var(--navy); display: flex; justify-content: space-between; 
    align-items: center; z-index: 1000; border-bottom: 2px solid var(--gold); 
}
.nav-logo { height: 50px; width: auto; object-fit: contain; } /* Scaled Logo */
.nav-links a { color: white; text-decoration: none; margin-left: 1.5rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }

.hero-panel { height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-content h1 { font-size: 5rem; margin-bottom: 0.5rem; }
.gold-subtitle { color: var(--gold); letter-spacing: 5px; font-weight: 800; font-size: 0.9rem; }
.social-hero { margin-top: 2rem; font-size: 1.5rem; }
.social-hero a { color: var(--gold); margin: 0 10px; transition: 0.3s; }

.bio-section { padding: 100px 0; background: var(--light-bg); }
.bio-flex { display: flex; gap: 60px; align-items: center; }
.bio-image-stack { position: relative; flex: 1; max-width: 450px; }
.main-bio-img { width: 100%; border: 2px solid var(--gold); box-shadow: 20px 20px 0px var(--gold); }
.accent-bio-img { position: absolute; bottom: -30px; right: -30px; width: 180px; border: 4px solid var(--navy); }

/* ABIM Badge Styles */
.abim-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    z-index: 10;
}

.abim-badge-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a3a 100%);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--gold);
    transform: rotate(-5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abim-badge-inner:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.abim-icon {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.abim-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.abim-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.abim-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.abim-specialty {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}
.bio-text { flex: 1.2; text-align: left; }
.bio-text p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.italics { font-style: italic; font-size: 1.4rem; color: var(--dark-green); border-left: 5px solid var(--gold); padding-left: 2rem; margin: 2rem 0; }

/* Bio Quote - Elegant Featured Quote */
.bio-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--dark-green);
    margin: 2.5rem 0 1.5rem;
    line-height: 1.35;
    letter-spacing: 0.3px;
    display: block;
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
}
.signature { font-size: 1.6rem; color: var(--gold); text-align: right; margin-top: 0.5rem; }

.yt-section { padding: 80px 0; background: var(--dark-green); color: white; text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin: 50px 0; }
.video-card { position: relative; padding-bottom: 56.25%; height: 0; border: 1px solid var(--gold); }
.video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.gold-btn { background: var(--gold); color: var(--navy); padding: 1.2rem 3rem; text-decoration: none; font-weight: 900; border-radius: 5px; display: inline-block; transition: 0.3s; }

.footer { background: var(--navy); padding: 80px 0; color: white; text-align: center; border-top: 2px solid var(--gold); }
.footer-links a { color: var(--gold); margin: 0 15px; text-decoration: none; font-weight: 600; }

@media (max-width: 768px) {
    .bio-flex { flex-direction: column; }
    .hero-panel h1 { font-size: 3.5rem; }
    .accent-bio-img { display: none; }
    .abim-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
    }
    .abim-badge-inner {
        transform: rotate(0deg);
        justify-content: center;
    }
    .bio-quote {
        font-size: 2.2rem;
        line-height: 1.35;
        padding-left: 1.25rem;
        font-weight: 600;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--gold);
        border-bottom: 4px solid var(--gold);
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    .signature { font-size: 2.6rem; }
}

/* ============================
   ARTICLES PAGE STYLES
   ============================ */

/* Library Header */
.library-page { background: var(--light-bg); }

.library-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a3a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.library-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.library-header .container {
    position: relative;
    z-index: 1;
}

.library-header h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.library-header .gold-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Report Container */
.report-container {
    padding: 80px 2rem;
}

/* Academic Report */
.academic-report {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Report Header */
.report-header {
    background: linear-gradient(135deg, var(--dark-green) 0%, #2a4a32 100%);
    padding: 60px 80px;
    text-align: center;
    position: relative;
}

.report-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold);
}

.report-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.report-header h3 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Report Sections */
.report-section {
    padding: 60px 80px;
    border-bottom: 1px solid rgba(27, 48, 34, 0.1);
}

.report-section:last-of-type {
    border-bottom: none;
}

.report-section h4 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

.report-section h5 {
    font-size: 1.3rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
    font-family: 'Playfair Display', serif;
}

.report-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5rem;
}

.report-section ul,
.report-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 2;
}

.report-section li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.report-section li strong {
    color: var(--dark-green);
}

/* Featured Image Blocks - Alternating Layout */
.featured-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 80px;
    background: linear-gradient(135deg, #f8f5ff 0%, #fff5f8 100%);
    border-bottom: 1px solid rgba(27, 48, 34, 0.1);
}

.featured-block.reverse {
    flex-direction: row-reverse;
}

.featured-block .featured-image {
    flex: 0 0 380px;
    max-width: 380px;
}

.featured-block .featured-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(138, 100, 200, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-block .featured-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(138, 100, 200, 0.35);
}

.featured-block .featured-content {
    flex: 1;
}

.featured-block .featured-content h4 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

.featured-block .featured-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Tables */
.table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.table-wrapper thead {
    background: linear-gradient(135deg, var(--dark-green) 0%, #2a4a32 100%);
}

.table-wrapper th {
    color: var(--white);
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-wrapper td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #444;
}

.table-wrapper tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.table-wrapper tbody tr:last-child td {
    border-bottom: none;
}

/* Probiotic List */
.probiotic-list {
    background: linear-gradient(135deg, #f8f5ff 0%, #fff5f8 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid #8a64c8;
}

.probiotic-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.probiotic-list li {
    padding: 0.5rem 0;
    font-style: italic;
    color: #5a3d7a;
    font-size: 1rem;
}

.probiotic-list li::before {
    content: '•';
    color: #8a64c8;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Report Conclusion */
.report-conclusion {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a3a 100%);
    padding: 60px 80px;
    color: var(--white);
}

.report-conclusion h4 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
    padding-bottom: 0.75rem;
}

.report-conclusion p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.report-conclusion .signature {
    color: var(--gold);
    font-size: 2rem;
    text-align: right;
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive - Articles Page */
@media (max-width: 992px) {
    .library-header h1 { font-size: 3rem; }
    .report-header { padding: 40px; }
    .report-header h2 { font-size: 2.2rem; }
    .report-section { padding: 40px; }
    .featured-block {
        padding: 40px;
        gap: 40px;
    }
    .featured-block .featured-image {
        flex: 0 0 300px;
        max-width: 300px;
    }
    .report-conclusion { padding: 40px; }
}

@media (max-width: 768px) {
    .library-header { padding: 80px 0 60px; }
    .library-header h1 { font-size: 2.5rem; }
    .report-header h2 { font-size: 1.8rem; }
    .report-header h3 { font-size: 1rem; }
    .report-section h4 { font-size: 1.5rem; }
    .featured-block,
    .featured-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .featured-block .featured-image {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .featured-block .featured-content h4 {
        display: block;
    }
    .table-wrapper th,
    .table-wrapper td {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================
   CONSULTATION SECTION STYLES
   ============================ */

.consultation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f5ff 0%, #efe8f8 50%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultation-image {
    position: relative;
}

.consultation-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(138, 100, 200, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.consultation-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 100px rgba(138, 100, 200, 0.35);
}

.consultation-form-wrapper {
    max-width: 480px;
}

.consultation-form-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
    line-height: 1.2;
}

.consultation-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    letter-spacing: 0.3px;
}

.form-group .required {
    color: #c9a032;
    margin-left: 2px;
}

.form-group input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e0d8eb;
    border-radius: 12px;
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-note {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin-top: -0.5rem;
}

.submit-btn {
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #c9a032;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Consultation Responsive */
@media (max-width: 992px) {
    .consultation-grid {
        gap: 50px;
    }
    .consultation-form-wrapper h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 70px 0;
    }
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .consultation-image {
        order: -1;
    }
    .consultation-image img {
        max-width: 360px;
        margin: 0 auto;
    }
    .consultation-form-wrapper {
        max-width: 100%;
    }
    .consultation-form-wrapper h2 {
        font-size: 2rem;
    }
    .form-group label {
        text-align: left;
    }
}

/* ============================
   CONFERENCES SECTION STYLES
   ============================ */

.conferences-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, #f5f0eb 100%);
}

.conferences-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.conferences-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
}

.conference-event {
    margin-bottom: 50px;
}

.conference-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.conference-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.conference-location {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.25rem;
}

.conference-location i {
    color: var(--gold);
    margin-right: 8px;
}

.conference-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.conference-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(27, 48, 34, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.conference-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-green));
    margin: 60px auto;
    border-radius: 2px;
}

/* Coming Soon Placeholder */
.conference-gallery.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    background: linear-gradient(135deg, #f8f5ff 0%, #fff5f8 100%);
    border-radius: 16px;
    border: 2px dashed var(--gold);
}

.coming-soon-message {
    text-align: center;
    color: #888;
}

.coming-soon-message i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.coming-soon-message p {
    font-size: 1.3rem;
    font-style: italic;
    color: #777;
}

/* Conference Responsive */
@media (max-width: 992px) {
    .conference-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .conferences-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .conferences-section {
        padding: 70px 0;
    }
    .conference-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .conferences-section .section-title {
        font-size: 2rem;
    }
    .conference-header h3 {
        font-size: 1.8rem;
    }
    .gallery-item {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .conference-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ============================
   FAQ PAGE STYLES
   ============================ */

.faq-page {
    background: var(--light-bg);
}

.faq-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a3a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.faq-header .container {
    position: relative;
    z-index: 1;
}

.faq-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.header-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-style: italic;
}

.faq-main {
    padding: 80px 0;
}

/* FAQ Accordion Styles */
.faq-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
    transition: color 0.3s ease, background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--dark-green) 0%, #2a4a32 100%);
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}

.faq-answer li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Assessment Section Styles */
.assessment-section {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.assessment-header {
    text-align: center;
    margin-bottom: 50px;
}

.assessment-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.assessment-intro {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Question Cards */
.question-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.question-number {
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a032 100%);
    color: var(--navy);
    font-weight: 800;
    font-size: 0.9rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.question-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    padding-right: 20px;
}

.question-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.options-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8f8f8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-label:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.option-label input[type="radio"],
.option-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    accent-color: var(--gold);
    cursor: pointer;
}

.option-label input[type="radio"]:checked + .option-text,
.option-label input[type="checkbox"]:checked + .option-text {
    color: var(--dark-green);
    font-weight: 600;
}

.option-label:has(input:checked) {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.option-text {
    font-size: 1rem;
    color: #444;
    transition: color 0.3s ease;
}

/* Submit Section */
.submit-section {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 30px;
}

.assessment-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.4rem 3.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.assessment-submit i {
    transition: transform 0.3s ease;
}

.assessment-submit:hover i {
    transform: translateX(5px);
}

/* Results Section */
.results-section {
    margin-top: 40px;
}

.results-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.score-display {
    margin-bottom: 30px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a032 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

#score-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
}

.score-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.results-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.results-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.results-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Result Type Colors */
.results-card.resilient .score-circle {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.4);
}

.results-card.resilient .results-content h3 {
    color: #4CAF50;
}

.results-card.early .score-circle {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.4);
}

.results-card.early .results-content h3 {
    color: #F57C00;
}

.results-card.significant .score-circle {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    box-shadow: 0 10px 40px rgba(255, 87, 34, 0.4);
}

.results-card.significant .results-content h3 {
    color: #E64A19;
}

.results-card.advanced .score-circle {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    box-shadow: 0 10px 40px rgba(244, 67, 54, 0.4);
}

.results-card.advanced .results-content h3 {
    color: #d32f2f;
}

.results-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-btn {
    background: transparent;
    color: var(--dark-green);
    padding: 1rem 2.5rem;
    border: 2px solid var(--dark-green);
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-btn:hover {
    background: var(--dark-green);
    color: var(--white);
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
    .faq-header {
        padding: 100px 0 60px;
    }

    .faq-header h1 {
        font-size: 2.5rem;
    }

    .faq-main {
        padding: 50px 0;
    }

    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .assessment-header h2 {
        font-size: 2.2rem;
    }

    .question-card {
        padding: 30px 25px;
    }

    .question-card h3 {
        font-size: 1.15rem;
    }

    .option-label {
        padding: 14px 16px;
    }

    .results-card {
        padding: 35px 25px;
    }

    .results-content h3 {
        font-size: 1.6rem;
    }

    .results-actions {
        flex-direction: column;
        align-items: center;
    }

    .results-actions .gold-btn,
    .results-actions .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================
   HERO SUBHEADING STYLES
   ============================ */

.hero-subheading {
    font-size: 1.15rem;
    max-width: 820px;
    margin: 1rem auto 0.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* ============================
   CONSULTATION SECTION ENHANCEMENTS
   ============================ */

.cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.cta-subhead {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.who-for-list {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(27, 48, 34, 0.05) 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--gold);
}

.who-for-title {
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.who-for-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.who-for-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #444;
}

.who-for-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

.metabolic-note {
    font-style: italic;
    color: var(--dark-green);
    font-size: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.cta-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(27, 48, 34, 0.08) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.assessment-link-box {
    margin-top: 2rem;
    text-align: center;
}

.assessment-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-green) 0%, #2a4a32 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 48, 34, 0.3);
}

.assessment-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 48, 34, 0.4);
    background: linear-gradient(135deg, #2a4a32 0%, var(--dark-green) 100%);
}

.assessment-link i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ============================
   PROCESS GRAPHIC & FAQ ENHANCEMENTS
   ============================ */

.process-steps {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.process-graphic {
    margin-top: 2rem;
    text-align: center;
}

.process-graphic img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .hero-subheading {
        font-size: 1.05rem;
        padding: 0 0.5rem;
        line-height: 1.45;
        max-width: 100%;
    }

    .cta-headline {
        font-size: 1.3rem;
    }

    .cta-subhead {
        font-size: 1.1rem;
    }

    .who-for-list {
        padding: 1.25rem 1.5rem;
    }

    .assessment-link {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}