.elementor-1986 .elementor-element.elementor-element-1ff3762{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-543f03d */p.Recent {
    color: #fff !important;
}

.pricing-cards {
    grid-template-columns: repeat(2, 1fr) !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-543f03d *//* Modern Luxury Design System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Your Color Palette */
    --charcoal: #333231;
    --off-white: #E9E5DC;
    --warm-gray: #A8A6A1;
    --light-beige: #D8C9B5;
    --soft-peach: #E4C1AE;
    --leaf-green: #485B3A;
    
    /* Rich Extended Palette */
    --charcoal-90: rgba(51, 50, 49, 0.9);
    --charcoal-80: rgba(51, 50, 49, 0.8);
    --charcoal-20: rgba(51, 50, 49, 0.2);
    --charcoal-10: rgba(51, 50, 49, 0.1);
    
    --peach-light: #F0D7C8;
    --peach-dark: #D4A08C;
    --green-light: #5A7348;
    --green-dark: #364129;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(51, 50, 49, 0.08);
    --shadow-md: 0 8px 24px rgba(51, 50, 49, 0.12);
    --shadow-lg: 0 16px 48px rgba(51, 50, 49, 0.16);
    --shadow-xl: 0 24px 64px rgba(51, 50, 49, 0.20);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

/* Modern Luxury Navigation */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, var(--off-white), rgba(233, 229, 220, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-nav.scrolled {
    background: rgba(233, 229, 220, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(72, 91, 58, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--warm-gray);
    letter-spacing: 3px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--soft-peach), var(--peach-dark));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--soft-peach);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--leaf-green);
}

.phone-icon {
    font-size: 16px;
}

.nav-appointment {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-90));
    color: var(--off-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(51, 50, 49, 0.2);
}

.nav-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(51, 50, 49, 0.3);
    background: linear-gradient(135deg, var(--green-dark), var(--leaf-green));
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* Hero Section - Premium Design */
.hero-luxury {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(51, 50, 49, 0.75) 0%,
        rgba(72, 91, 58, 0.6) 50%,
        rgba(51, 50, 49, 0.7) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(228, 193, 174, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(72, 91, 58, 0.1) 0%, transparent 50%);
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem 4rem;
}

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

.hero-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease;
}

.luxury-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #F0D7C8;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(51, 50, 49, 0.5);
}

.badge-separator {
    color: var(--light-beige);
    opacity: 0.5;
}

.hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-line-1 {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 4px rgba(51, 50, 49, 0.8),
        0 4px 8px rgba(51, 50, 49, 0.4),
        0 8px 16px rgba(51, 50, 49, 0.2);
}

.title-line-2 {
    display: block;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -2px;
    text-shadow: 
        0 2px 4px rgba(51, 50, 49, 0.8),
        0 4px 8px rgba(51, 50, 49, 0.4),
        0 8px 16px rgba(51, 50, 49, 0.2);
}

.title-line-2 em {
    font-style: italic;
    color: #F0D7C8;
    font-weight: 400;
    text-shadow: 
        0 2px 4px rgba(51, 50, 49, 0.6),
        0 4px 8px rgba(228, 193, 174, 0.3);
}

.hero-luxury-desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #F5F2ED;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 2px 4px rgba(51, 50, 49, 0.6);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(216, 201, 181, 0.3);
    border-bottom: 1px solid rgba(216, 201, 181, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-feature {
    text-align: center;
}

.feature-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #F0D7C8;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(51, 50, 49, 0.6);
}

.feature-text {
    display: block;
    font-size: 0.875rem;
    color: #F5F2ED;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(51, 50, 49, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 18px 36px;
    background: var(--soft-peach);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(228, 193, 174, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(228, 193, 174, 0.6);
    background: var(--peach-light);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    color: var(--off-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--light-beige);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-secondary:hover {
    background: rgba(216, 201, 181, 0.1);
    border-color: var(--soft-peach);
    color: var(--soft-peach);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--light-beige);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--soft-peach);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

/* Section Styling */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.left-align {
    text-align: left;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--leaf-green);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label.light {
    color: var(--soft-peach);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
}

.difference-luxury .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(51, 50, 49, 0.1);
}

.section-title span {
    color: var(--soft-peach);
    font-weight: 600;
}

.difference-luxury .section-title span {
    color: var(--soft-peach);
    font-weight: 400;
    font-style: italic;
}

.section-title.light {
    color: var(--off-white);
}

/* Evidence-Based Medicine Section */
.evidence-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(228, 193, 174, 0.03) 100%);
}

.evidence-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--leaf-green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 25px;
    margin-bottom: 1.5rem;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subtitle-emphasis {
    color: var(--soft-peach);
    font-style: italic;
    font-weight: 300;
}

.intro-description {
    font-size: 1.2rem;
    color: var(--warm-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(51, 50, 49, 0.15);
    width: 100%;
    aspect-ratio: 1 / 1;
}

.main-clinic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border: 2px solid var(--light-beige);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--soft-peach);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(228, 193, 174, 0.2);
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    background: white;
    border: 1px solid rgba(216, 201, 181, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--soft-peach);
    box-shadow: 0 20px 50px rgba(51, 50, 49, 0.1);
}

.feature-card.highlighted {
    background: linear-gradient(135deg, rgba(228, 193, 174, 0.05) 0%, white 100%);
    border-color: var(--soft-peach);
    box-shadow: 0 10px 30px rgba(228, 193, 174, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.feature-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.3;
}

.feature-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section - Premium Grid */
.services-luxury {
    padding: 6rem 0;
    background: var(--charcoal);
}

.services-luxury .section-title {
    color: var(--off-white);
}

.services-luxury .section-label {
    color: var(--soft-peach);
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-premium {
    position: relative;
    background: rgba(233, 229, 220, 0.05);
    border: 1px solid rgba(216, 201, 181, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-premium.highlighted {
    background: linear-gradient(135deg, rgba(228, 193, 174, 0.1) 0%, rgba(216, 201, 181, 0.05) 100%);
    border-color: var(--soft-peach);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--soft-peach);
    color: var(--charcoal);
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
}

.service-premium:hover {
    transform: translateY(-4px);
    background: rgba(233, 229, 220, 0.08);
    border-color: var(--leaf-green);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-inner {
    font-size: 28px;
    filter: brightness(2);
}

.service-premium h3 {
    color: var(--off-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-premium p {
    color: var(--light-beige);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--warm-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--soft-peach);
}

.service-cta {
    color: var(--soft-peach);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-cta:hover {
    color: var(--peach-light);
}

.services-footer {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: var(--soft-peach);
    border: 2px solid var(--soft-peach);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--soft-peach);
    color: var(--charcoal);
}

/* Difference Section */
.difference-luxury {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(228, 193, 174, 0.05) 100%);
}

.difference-luxury .section-label {
    color: var(--leaf-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.difference-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.difference-points {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

.difference-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.point-content h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.point-content p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.difference-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--charcoal);
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.difference-cta:hover {
    background: var(--leaf-green);
    transform: translateY(-2px);
}

.visual-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(51, 50, 49, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.overlay-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--soft-peach);
}

.stat-label {
    display: block;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

/* Testimonials */
.testimonials-luxury {
    padding: 6rem 0;
    background: var(--charcoal);
}

.testimonials-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-modern {
    background: rgba(233, 229, 220, 0.05);
    border: 1px solid rgba(216, 201, 181, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-modern.featured {
    background: linear-gradient(135deg, rgba(228, 193, 174, 0.1) 0%, rgba(216, 201, 181, 0.05) 100%);
    border-color: var(--soft-peach);
    transform: scale(1.05);
}

.testimonial-modern:hover {
    transform: translateY(-4px);
    border-color: var(--soft-peach);
}

.testimonial-rating {
    color: var(--soft-peach);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-modern blockquote {
    color: var(--light-beige);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: var(--off-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--warm-gray);
    font-size: 0.875rem;
}

/* Location Section */
.location-luxury {
    padding: 6rem 0;
    background: white;
}

.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.address-block {
    background: var(--off-white);
    padding: 2rem;
    border-left: 4px solid var(--leaf-green);
    margin-bottom: 2rem;
}

.address-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

address {
    font-style: normal;
    color: var(--warm-gray);
    line-height: 1.8;
}

.serving-block {
    margin-bottom: 2rem;
}

.serving-block h4 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.serving-block p {
    color: var(--warm-gray);
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: var(--leaf-green);
}

.location-cta-group {
    display: flex;
    gap: 1rem;
}

.location-primary-cta {
    padding: 14px 32px;
    background: var(--charcoal);
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-primary-cta:hover {
    background: var(--leaf-green);
}

.location-secondary-cta {
    padding: 14px 32px;
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--light-beige);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-secondary-cta:hover {
    border-color: var(--soft-peach);
    color: var(--soft-peach);
}

.location-map-side {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.hours-badge {
    background: var(--charcoal);
    color: var(--off-white);
    padding: 1.5rem;
    border-radius: 12px;
}

.hours-badge h5 {
    color: var(--soft-peach);
    margin-bottom: 0.5rem;
}

.hours-badge p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Final CTA */
.cta-luxury {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--green-dark) 100%);
    text-align: center;
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(228, 193, 174, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(216, 201, 181, 0.1) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--light-beige);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 20px 48px;
    background: var(--soft-peach);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 32px rgba(228, 193, 174, 0.3);
}

.cta-final-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(228, 193, 174, 0.5);
    background: var(--peach-light);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.cta-final-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Footer */
.footer-luxury {
    background: var(--charcoal);
    color: var(--off-white);
}

.footer-top {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(168, 166, 161, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.footer-brand-section .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--soft-peach);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--soft-peach);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--light-beige);
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--soft-peach);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Comprehensive Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .evidence-container,
    .section-container {
        padding: 0 2rem;
    }
    
    .content-grid {
        gap: 3rem;
    }
    
    .main-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
    
    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .difference-luxury .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-inner {
        padding: 1rem 2rem;
    }
    
    .hero-container {
        padding: 6rem 2rem 3rem;
    }
    
    .main-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
        text-align: center;
    }
    
    .intro-description {
        font-size: 1.1rem;
    }
    
    /* Evidence Section Responsive */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .main-clinic-image {
        height: 400px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    /* Services Grid */
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Difference Section */
    .difference-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .difference-luxury .section-title {
        text-align: center;
    }
    
    /* Location */
    .location-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Testimonials */
    .testimonials-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-inner {
        padding: 1rem 1.5rem;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .brand-tagline {
        font-size: 9px;
    }
    
    /* Hero Section */
    .hero-container {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .hero-badge-row {
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .luxury-badge {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .title-line-1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 0.3rem;
    }
    
    .title-line-2 {
        font-size: clamp(2.2rem, 9vw, 4rem);
    }
    
    .hero-luxury-desc {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .feature-number {
        font-size: 2rem;
        margin-bottom: 0.2rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 13px;
    }
    
    /* Evidence Section */
    .evidence-section {
        padding: 4rem 0;
    }
    
    .evidence-container {
        padding: 0 1.5rem;
    }
    
    .section-intro {
        margin-bottom: 3rem;
    }
    
    .main-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        line-height: 1.2;
    }
    
    .intro-description {
        font-size: 1rem;
    }
    
    .main-clinic-image {
        height: 300px;
    }
    
    .stats-row {
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-emoji {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    /* Services */
    .services-luxury {
        padding: 4rem 0;
    }
    
    .services-premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-premium {
        padding: 2rem;
    }
    
    /* Difference Section */
    .difference-luxury {
        padding: 4rem 0;
    }
    
    .difference-luxury .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .difference-points {
        gap: 1rem;
    }
    
    .difference-point {
        gap: 1rem;
    }
    
    /* Testimonials */
    .testimonials-luxury {
        padding: 4rem 0;
    }
    
    .testimonials-modern {
        grid-template-columns: 1fr;
    }
    
    .testimonial-modern {
        padding: 2rem;
    }
    
    /* Location */
    .location-luxury {
        padding: 4rem 0;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .location-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-top {
        padding: 3rem 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* CTA Section */
    .cta-luxury {
        padding: 5rem 0;
    }
    
    .cta-content {
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .intro-badge {
        font-size: 10px;
        padding: 6px 16px;
    }
    
    .main-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    
    .section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .difference-luxury .section-title {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }
    
    .main-clinic-image {
        height: 250px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-emoji {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    /* Mobile Portrait Hero Optimizations */
    .hero-container {
        padding: 2.5rem 1rem 1rem;
    }
    
    .hero-badge-row {
        margin-bottom: 1.5rem;
        gap: 0.3rem;
    }
    
    .luxury-badge {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .title-line-1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 0.2rem;
    }
    
    .title-line-2 {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }
    
    .hero-luxury-desc {
        font-size: clamp(0.95rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
    }
    
    .feature-number {
        font-size: 1.8rem;
        margin-bottom: 0.1rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .hero-cta-group {
        gap: 0.6rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 20px;
        font-size: 12px;
    }
    
    .nav-inner {
        padding: 1rem;
    }
    
    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}


/* TRT Treatment Page Styles */

/* Hero Adjustments */
.trt-hero .hero-title {
    max-width: 900px;
    margin: 0 auto;
}

/* Additional Styles for Word-for-Word Content */
.symptoms-heading,
.approach-desc,
.options-note {
    text-align: center;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.approach-desc {
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--charcoal-80);
    font-size: 1.125rem;
    line-height: 1.8;
}

.options-note {
    margin-top: 2rem;
    font-style: italic;
    font-size: 1.125rem;
}

.causes-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.causes-list li {
    padding: 0.5rem 0;
    color: var(--charcoal-80);
    position: relative;
    padding-left: 1.5rem;
}

.causes-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--soft-peach);
    font-weight: bold;
}

.monitoring-note ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.monitoring-note ul li {
    padding: 0.5rem 0;
    color: var(--charcoal-80);
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.monitoring-note ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--leaf-green);
}

.timeline-note {
    text-align: center;
    background: var(--leaf-green);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.gender-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--charcoal);
    margin: 2rem 0 1rem;
}

.monitoring-note h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin: 1.5rem 0 1rem;
}

.monitoring-note p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--charcoal-80);
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: white;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.intro-content h2 {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-weight: 400;
}

.intro-content h2 .highlight {
    color: var(--leaf-green);
    font-style: italic;
}

.intro-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--charcoal-80);
    text-align: center;
}

/* Symptoms/Decline Section */
.decline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(216, 201, 181, 0.3) 100%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.title-emphasis {
    color: var(--soft-peach);
    font-style: italic;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--charcoal-80);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.symptom-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(168, 166, 161, 0.1);
    transition: all 0.3s ease;
}

.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.symptom-card.highlighted {
    background: linear-gradient(135deg, rgba(228, 193, 174, 0.1), rgba(228, 193, 174, 0.05));
    border: 2px solid var(--soft-peach);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.symptom-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.symptom-card ul {
    list-style: none;
    padding: 0;
}

.symptom-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal-80);
    font-size: 1rem;
    line-height: 1.6;
}

.symptom-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--soft-peach);
    font-weight: 600;
}

.symptom-cta {
    text-align: center;
}

.symptom-cta p {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(72, 91, 58, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 91, 58, 0.4);
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-step {
    background: rgba(233, 229, 220, 0.3);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    border-left: 4px solid var(--soft-peach);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--soft-peach), var(--peach-dark));
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.approach-step p {
    color: var(--charcoal-80);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.test-list {
    list-style: none;
    padding: 0;
}

.test-list li {
    padding: 0.25rem 0;
    color: var(--charcoal);
    font-size: 1rem;
    padding-left: 1.25rem;
    position: relative;
}

.test-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--leaf-green);
    font-weight: 600;
}

/* Redesigned Approach Section */
.approach-section-redesigned {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, rgba(51, 50, 49, 0.95) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.approach-section-redesigned::before {
    display: none;
}

.approach-section-redesigned .section-label {
    color: var(--soft-peach);
}

.approach-section-redesigned .section-title {
    color: white;
}

.approach-section-redesigned .approach-desc {
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Science Section White Text */
.science-highlight p {
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Cost Section White Text */
.cost-intro {
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.approach-hero {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.approach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.visual-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.visual-element:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.element-icon {
    font-size: 2.5rem;
    background: var(--soft-peach);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-visual .visual-element span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    text-align: center;
    color: #FFFFFF !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.connector-line {
    display: none;
}

.approach-details {
    display: grid;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.detail-card.featured {
    background: rgba(228, 193, 174, 0.1);
    border-color: var(--soft-peach);
}

.detail-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-badge {
    background: linear-gradient(135deg, var(--soft-peach), var(--peach-light));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #FFFFFF !important;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.card-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.test-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.test-category h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--soft-peach);
    margin-bottom: 1rem;
}

.test-category ul {
    list-style: none;
    padding: 0;
}

.test-category li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    position: relative;
}

.test-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--soft-peach);
    font-weight: bold;
}

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

.cause-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cause-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cause-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.protocol-factors {
    margin-bottom: 2rem;
}

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

.factor-centered {
    display: flex;
    justify-content: center;
}

.factor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.factor-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.factor span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.optimization-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.flow-icon {
    font-size: 2rem;
    background: rgba(228, 193, 174, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--soft-peach);
}

.flow-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--soft-peach);
    font-weight: bold;
}

.card-conclusion {
    padding: 1.5rem;
    background: rgba(72, 91, 58, 0.2);
    border-radius: 8px;
    border-left: 4px solid var(--leaf-green);
}

.card-conclusion p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Treatment Options Section */
.options-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(216, 201, 181, 0.3) 100%);
}

.options-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.option-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
}

.option-desc {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.option-details {
    text-align: left;
    background: rgba(233, 229, 220, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--charcoal-80);
}

.option-details strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* Gender Sections */
.gender-section {
    padding: 80px 0;
}

.gender-section.men {
    background: white;
}

.gender-section.women {
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(216, 201, 181, 0.2) 100%);
}

.gender-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gender-container.reverse {
    direction: rtl;
}

.gender-container.reverse .gender-content {
    direction: ltr;
}

.gender-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.gender-content p {
    font-size: 1.125rem;
    color: var(--charcoal-80);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    background: rgba(72, 91, 58, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--charcoal);
    border-left: 3px solid var(--leaf-green);
}

.monitoring-note {
    background: linear-gradient(135deg, rgba(228, 193, 174, 0.2), rgba(228, 193, 174, 0.1));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--soft-peach);
}

.monitoring-note h4 {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.monitoring-note p {
    font-size: 0.875rem;
    margin: 0;
}

.gender-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gender-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

/* Timeline Section */
/* Timeline Section - Clean Design */
.timeline-section {
    padding: 80px 0;
    background: white;
    color: var(--charcoal);
}

.timeline-section .section-label {
    background: var(--leaf-green);
    color: white;
}

.timeline-section .section-title {
    color: var(--charcoal);
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.timeline-item {
    background: white;
    border: 2px solid var(--leaf-green);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.timeline-item.featured {
    border-color: var(--soft-peach);
    background: var(--soft-peach);
    color: white;
}

.timeline-item.featured h4,
.timeline-item.featured p {
    color: white;
}

.timeline-marker {
    background: var(--leaf-green);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-item.featured .timeline-marker {
    background: white;
    color: var(--soft-peach);
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--charcoal-80);
    line-height: 1.6;
    margin: 0;
}

/* Timeline Responsive Design */
@media (max-width: 1024px) {
    .timeline-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .timeline-track {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
}

/* Safety Section */
.safety-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.safety-section .section-desc {
    text-align: center;
    font-size: 1.125rem;
    color: var(--charcoal-80);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.safety-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(168, 166, 161, 0.2);
}

.safety-card.manageable {
    border-left: 4px solid var(--leaf-green);
}

.safety-card.contraindications {
    border-left: 4px solid #d97706;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.card-icon {
    font-size: 1.5rem;
}

.card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin: 0;
    flex: 1;
}

.badge {
    background: var(--soft-peach);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contraindications .badge {
    background: #d97706;
}

.effects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.effects-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(168, 166, 161, 0.1);
    color: var(--charcoal-80);
    font-size: 0.875rem;
    line-height: 1.6;
}

.effects-list li:last-child {
    border-bottom: none;
}

.effects-list li::before {
    content: "•";
    color: var(--soft-peach);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.contraindications .effects-list li::before {
    color: #d97706;
}

.safety-footer {
    text-align: center;
    background: var(--leaf-green);
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.safety-footer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Old Safety Section removed */

.safety-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
}

.safety-text h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin: 2rem 0 1rem 0;
    font-family: 'Cormorant Garamond', serif;
}

.safety-text p {
    color: var(--charcoal-80);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.side-effects-list,
.contraindications-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.side-effects-list li,
.contraindications-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal-80);
}

.side-effects-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--soft-peach);
}

.contraindications-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* TRT vs Testosterone Boosters Section */
.boosters-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(216, 201, 181, 0.3) 100%);
}

.boosters-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--charcoal-80);
    margin-bottom: 3rem;
}

.boosters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.booster-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.booster-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.booster-card p {
    color: var(--charcoal-80);
    line-height: 1.6;
}

.conclusion-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--charcoal);
    font-weight: 600;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--leaf-green);
}

/* Candidate Section */
.candidate-section {
    padding: 80px 0;
    background: white;
}

.candidate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.candidate-card {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(233, 229, 220, 0.3);
}

.candidate-card.ideal {
    border-left: 4px solid var(--leaf-green);
}

.candidate-card.not-ideal {
    border-left: 4px solid var(--soft-peach);
}

.candidate-card h3 {
    font-size: 1.375rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.candidate-card ul {
    list-style: none;
    padding: 0;
}

.candidate-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal-80);
}

.candidate-card.ideal li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--leaf-green);
    font-weight: 600;
}

.candidate-card.not-ideal li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--soft-peach);
    font-weight: 600;
}

.candidate-note {
    text-align: center;
    font-size: 1rem;
    color: var(--charcoal-80);
    font-style: italic;
}

/* Science Section */
.science-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(216, 201, 181, 0.3) 100%);
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
}

.science-content p {
    font-size: 1.125rem;
    color: var(--charcoal-80);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.science-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.science-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--charcoal);
    font-size: 1rem;
    border-bottom: 1px solid rgba(168, 166, 161, 0.1);
}

.science-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--leaf-green);
    font-weight: 600;
    font-size: 1.25rem;
}

.science-note {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--leaf-green);
    font-style: italic;
}

/* Cost Section */
.cost-section {
    padding: 80px 0;
    background: white;
}

.cost-content {
    max-width: 900px;
    margin: 0 auto;
}

.cost-content > p {
    font-size: 1.125rem;
    color: var(--charcoal-80);
    margin-bottom: 1rem;
}

.cost-factors {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.cost-factors li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal-80);
}

.cost-factors li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--soft-peach);
}

.cost-content h3 {
    font-size: 1.375rem;
    color: var(--charcoal);
    margin: 2rem 0 1rem 0;
    font-family: 'Cormorant Garamond', serif;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cost-card {
    background: linear-gradient(135deg, rgba(228, 193, 174, 0.1), rgba(228, 193, 174, 0.05));
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--soft-peach);
}

.cost-card h4 {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.price {
    font-size: 1.375rem;
    color: var(--leaf-green);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.payment-note {
    text-align: center;
    padding: 1rem;
    background: rgba(72, 91, 58, 0.05);
    border-radius: 8px;
    color: var(--charcoal);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(216, 201, 181, 0.3) 100%);
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.faq-item p {
    color: var(--charcoal-80);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Science Section */
.science-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.science-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--charcoal-80);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.science-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(168, 166, 161, 0.2);
}

.science-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.science-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.science-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.science-card p {
    color: var(--charcoal-80);
    line-height: 1.6;
    font-size: 0.875rem;
}

.science-highlight {
    background: var(--leaf-green);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.science-highlight p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Cost Section */
.cost-section {
    padding: 5rem 0;
    background: var(--charcoal);
    color: white;
}

.cost-section .section-label {
    color: var(--soft-peach);
}

.cost-section .section-title {
    color: white;
}

.cost-intro {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(233, 229, 220, 0.95);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.factors-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(233, 229, 220, 0.9);
    font-size: 0.875rem;
}

.factor-icon {
    font-size: 1.25rem;
}

.investment-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--soft-peach);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "MOST CONVENIENT";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--soft-peach);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    color: var(--charcoal);
}

.pricing-card.featured .pricing-header {
    padding-top: 3rem;
}

.pricing-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.pricing-label {
    font-size: 0.875rem;
    color: var(--leaf-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.pricing-amount {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
    color: white;
    margin: 0 2rem;
    border-radius: 8px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    display: inline-block;
    margin-top: 0.25rem;
}

.price-range {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    display: block;
    margin: 0.5rem 0;
}

.period {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

.pricing-features {
    padding: 2rem;
    color: var(--charcoal-80);
}

.pricing-features p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.package-includes {
    background: rgba(233, 229, 220, 0.1);
    border-radius: 12px;
    padding: 3rem;
}

.package-includes h3 {
    text-align: center;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.include-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    background: var(--soft-peach);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.include-item strong {
    color: white;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.include-item p {
    color: rgba(233, 229, 220, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.insurance-note {
    background: rgba(72, 91, 58, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid rgba(72, 91, 58, 0.4);
}

.note-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.insurance-note p {
    margin: 0;
    color: rgba(233, 229, 220, 0.9);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* CTA Section */
.trt-cta {
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
}

.cta-contact {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: rgba(233, 229, 220, 0.8);
}

.cta-phone {
    color: var(--soft-peach);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-phone:hover {
    color: var(--peach-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .symptoms-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gender-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gender-container.reverse {
        direction: ltr;
    }
    
    .timeline-track {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-track::before {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .science-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
        grid-column: 1 / -1;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .factors-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .section-container,
    .intro-container,
    .safety-content {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .symptoms-grid,
    .approach-grid,
    .options-cards,
    .science-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gender-image img {
        height: 300px;
    }
    
    .timeline-item.featured .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 0.875rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: auto;
    }
    
    .science-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .package-includes {
        padding: 2rem;
    }
    
    .investment-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .intro-content h2 {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .option-icon {
        font-size: 2rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}/* End custom CSS */