

    .fh-page {
        font-family: 'Georgia', 'Times New Roman', serif;
        color: #2b2b2b;
        background: #faf7f2;
        line-height: 1.7;
        overflow-x: hidden;
    }

    .fh-page * {
        box-sizing: border-box;
    }

    /* ---- HERO ---- */
    .fh-hero {
        background: #efe8dc;
        padding: 100px 30px 90px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .fh-hero::before,
    .fh-hero::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(139, 26, 26, 0.15);
        border-radius: 50%;
    }

    .fh-hero::before { top: -100px; left: -100px; }
    .fh-hero::after  { bottom: -100px; right: -100px; }

    .fh-hero-inner {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    .fh-hero-label {
        display: inline-block;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #8b1a1a;
        margin-bottom: 25px;
        padding: 0 20px;
        position: relative;
    }

    .fh-hero-label::before,
    .fh-hero-label::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 30px;
        height: 1px;
        background: #8b1a1a;
    }

    .fh-hero-label::before { left: -25px; }
    .fh-hero-label::after  { right: -25px; }

    .fh-hero h1 {
        font-family: 'Georgia', serif;
        font-size: 62px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 0 0 30px;
        line-height: 1.1;
        letter-spacing: -1.5px;
    }

    .fh-hero h1 em {
        font-style: italic;
        color: #8b1a1a;
        display: block;
        font-family: 'Georgia', serif;
    }

    .fh-hero p {
        font-size: 18px;
        color: #555;
        max-width: 640px;
        margin: 0 auto 45px;
        line-height: 1.8;
        font-family: 'Georgia', serif;
        font-style: italic;
    }

    .fh-hero-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ---- BUTTONS ---- */
    .fh-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 40px;
        font-family: 'Georgia', serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 1px;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.35s ease;
        border: 1px solid transparent;
        cursor: pointer;
    }

    .fh-btn-primary {
        background: #8b1a1a;
        color: #ffffff !important;
        border-color: #8b1a1a;
    }

    .fh-btn-primary:hover {
        background: #6b0f0f;
        border-color: #6b0f0f;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(139, 26, 26, 0.25);
    }

    .fh-btn-outline {
        background: transparent;
        color: #1a1a1a !important;
        border-color: #1a1a1a;
    }

    .fh-btn-outline:hover {
        background: #1a1a1a;
        color: #ffffff !important;
        transform: translateY(-2px);
    }

    /* ---- SECTION COMMON ---- */
    .fh-section {
        padding: 100px 30px;
        background: #faf7f2;
    }

    .fh-section-alt {
        background: #efe8dc;
    }

    .fh-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .fh-section-label {
        display: block;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #8b1a1a;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
    }

    .fh-section-label::before,
    .fh-section-label::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 50px;
        height: 1px;
        background: #8b1a1a;
        opacity: 0.5;
    }

    .fh-section-label::before { left: calc(50% - 140px); }
    .fh-section-label::after  { right: calc(50% - 140px); }

    .fh-section-title {
        font-family: 'Georgia', serif;
        font-size: 48px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 0 0 25px;
        line-height: 1.15;
        text-align: center;
        letter-spacing: -1px;
    }

    .fh-section-title em {
        font-style: italic;
        color: #8b1a1a;
    }

    .fh-section-desc {
        font-size: 17px;
        color: #555;
        max-width: 720px;
        margin: 0 auto 60px;
        line-height: 1.8;
        text-align: center;
        font-family: 'Georgia', serif;
    }

    .fh-section-desc strong {
        color: #1a1a1a;
        font-weight: 600;
    }

    /* ---- INTRO / WHY JAIPUR ---- */
    .fh-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .fh-intro-content {
        padding-right: 20px;
    }

    .fh-intro-content .fh-section-label {
        text-align: left;
        padding-left: 0;
    }

    .fh-intro-content .fh-section-label::before,
    .fh-intro-content .fh-section-label::after {
        display: none;
    }

    .fh-intro-content h2 {
        font-family: 'Georgia', serif;
        font-size: 40px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 15px 0 25px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .fh-intro-content h2 em {
        font-style: italic;
        color: #8b1a1a;
    }

    .fh-intro-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.9;
        margin-bottom: 20px;
        font-family: 'Georgia', serif;
    }

    .fh-intro-content strong {
        color: #1a1a1a;
        font-weight: 600;
    }

    .fh-intro-points {
        display: flex;
        flex-direction: column;
    }

    .fh-point {
        display: flex;
        gap: 20px;
        padding: 25px 0;
        border-bottom: 1px solid rgba(139, 26, 26, 0.15);
        transition: all 0.3s ease;
        align-items: flex-start;
    }

    .fh-point:last-child {
        border-bottom: none;
    }

    .fh-point:hover {
        padding-left: 15px;
    }

    .fh-point-icon {
        flex-shrink: 0;
        width: 45px;
        height: 45px;
        border: 1px solid #8b1a1a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8b1a1a;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .fh-point:hover .fh-point-icon {
        background: #8b1a1a;
        color: #ffffff;
    }

    .fh-point-text strong {
        display: block;
        font-family: 'Georgia', serif;
        font-size: 18px;
        color: #1a1a1a;
        font-weight: 400;
        margin-bottom: 6px;
        letter-spacing: -0.3px;
    }

    .fh-point-text span {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        font-family: 'Georgia', serif;
    }

    /* ---- FEATURES GRID ---- */
    .fh-features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .fh-feature-card {
        text-align: center;
        padding: 50px 30px;
        background: transparent;
        border: 1px solid rgba(139, 26, 26, 0.2);
        transition: all 0.4s ease;
        position: relative;
    }

    .fh-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: #8b1a1a;
        transition: width 0.4s ease;
    }

    .fh-feature-card:hover::before {
        width: 60%;
    }

    .fh-feature-card:hover {
        background: #ffffff;
        border-color: #8b1a1a;
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(139, 26, 26, 0.1);
    }

    .fh-feature-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
        border: 1px solid #8b1a1a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #8b1a1a;
        transition: all 0.4s ease;
    }

    .fh-feature-card:hover .fh-feature-icon {
        background: #8b1a1a;
        color: #ffffff;
        transform: rotate(360deg);
    }

    .fh-feature-card h3 {
        font-family: 'Georgia', serif;
        font-size: 22px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 0 0 15px;
        line-height: 1.3;
        letter-spacing: -0.3px;
    }

    .fh-feature-card p {
        font-size: 15px;
        color: #666;
        margin: 0;
        line-height: 1.8;
        font-family: 'Georgia', serif;
    }

    /* ---- AUDIENCE CARDS ---- */
    .fh-audience-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .fh-audience-card {
        text-align: center;
        padding: 50px 30px;
        background: #ffffff;
        border: 1px solid rgba(139, 26, 26, 0.15);
        transition: all 0.4s ease;
    }

    .fh-audience-card:hover {
        border-color: #8b1a1a;
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(139, 26, 26, 0.12);
    }

    .fh-audience-icon {
        width: 90px;
        height: 90px;
        margin: 0 auto 25px;
        border: 2px solid #8b1a1a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        color: #8b1a1a;
        transition: all 0.4s ease;
    }

    .fh-audience-card:hover .fh-audience-icon {
        background: #8b1a1a;
        color: #ffffff;
        transform: scale(1.1);
    }

    .fh-audience-card h3 {
        font-family: 'Georgia', serif;
        font-size: 22px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 0 0 15px;
        letter-spacing: -0.3px;
    }

    .fh-audience-card p {
        font-size: 15px;
        color: #666;
        margin: 0;
        line-height: 1.8;
        font-family: 'Georgia', serif;
    }

    /* ---- INVESTMENT ---- */
    .fh-investment {
        background: #1a1a1a;
        padding: 100px 30px;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .fh-investment::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        border: 1px solid rgba(139, 26, 26, 0.3);
        border-radius: 50%;
    }

    .fh-investment-inner {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 70px;
        align-items: center;
    }

    .fh-investment-label {
        display: block;
        font-size: 12px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: #c9a86a;
        margin-bottom: 20px;
    }

    .fh-investment h2 {
        font-family: 'Georgia', serif;
        font-size: 44px;
        font-weight: 400;
        color: #ffffff !important;
        margin: 0 0 25px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .fh-investment h2 em {
        font-style: italic;
        color: #c9a86a;
    }

    .fh-investment p {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 18px;
        font-family: 'Georgia', serif;
    }

    .fh-investment strong {
        color: #c9a86a !important;
        font-weight: 400;
        font-style: italic;
    }

    .fh-investment-stats {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .fh-stat-box {
        padding: 25px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .fh-stat-box:last-child {
        border-bottom: none;
    }

    .fh-stat-number {
        font-family: 'Georgia', serif;
        font-size: 42px;
        font-weight: 400;
        color: #c9a86a;
        line-height: 1;
        margin-bottom: 8px;
        letter-spacing: -1px;
    }

    .fh-stat-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* ---- FAQ ---- */
    .fh-faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(139, 26, 26, 0.2);
    }

    .fh-faq-item {
        padding: 40px 35px;
        border-bottom: 1px solid rgba(139, 26, 26, 0.2);
        border-right: 1px solid rgba(139, 26, 26, 0.2);
        transition: all 0.3s ease;
    }

    .fh-faq-item:nth-child(2n) {
        border-right: none;
    }

    .fh-faq-item:hover {
        background: #ffffff;
    }

    .fh-faq-item:hover .fh-faq-number {
        color: #8b1a1a;
    }

    .fh-faq-number {
        font-family: 'Georgia', serif;
        font-size: 14px;
        color: #c9a86a;
        letter-spacing: 2px;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }

    .fh-faq-item h3 {
        font-family: 'Georgia', serif;
        font-size: 20px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 0 0 15px;
        line-height: 1.4;
    }

    .fh-faq-item p {
        font-size: 15px;
        color: #666;
        margin: 0;
        line-height: 1.8;
        font-family: 'Georgia', serif;
    }

    /* ---- CTA ---- */
    .fh-cta {
        background: #efe8dc;
        padding: 100px 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .fh-cta::before,
    .fh-cta::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border: 1px solid rgba(139, 26, 26, 0.2);
        border-radius: 50%;
    }

    .fh-cta::before { top: 30px; left: 30px; }
    .fh-cta::after  { bottom: 30px; right: 30px; }

    .fh-cta-inner {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .fh-cta h2 {
        font-family: 'Georgia', serif;
        font-size: 50px;
        font-weight: 400;
        color: #1a1a1a !important;
        margin: 0 0 25px;
        line-height: 1.15;
        letter-spacing: -1.5px;
    }

    .fh-cta h2 em {
        font-style: italic;
        color: #8b1a1a;
    }

    .fh-cta p {
        font-size: 17px;
        color: #555 !important;
        margin: 0 0 45px;
        line-height: 1.8;
        font-family: 'Georgia', serif;
        font-style: italic;
    }

    .fh-cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 1024px) {
        .fh-features-grid,
        .fh-audience-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        .fh-intro-grid,
        .fh-investment-inner {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .fh-faq-grid {
            grid-template-columns: 1fr;
        }
        .fh-faq-item {
            border-right: none;
        }
    }

    @media (max-width: 768px) {
        .fh-hero {
            padding: 70px 20px 60px;
        }
        .fh-hero h1 {
            font-size: 38px;
        }
        .fh-hero p {
            font-size: 16px;
        }
        .fh-hero::before,
        .fh-hero::after {
            width: 150px;
            height: 150px;
        }
        .fh-section {
            padding: 60px 20px;
        }
        .fh-section-title {
            font-size: 32px;
        }
        .fh-section-label::before,
        .fh-section-label::after {
            width: 25px;
        }
        .fh-section-label::before { left: calc(50% - 110px); }
        .fh-section-label::after  { right: calc(50% - 110px); }
        .fh-intro-content h2 {
            font-size: 30px;
        }
        .fh-features-grid,
        .fh-audience-grid {
            grid-template-columns: 1fr;
        }
        .fh-investment {
            padding: 60px 20px;
        }
        .fh-investment h2,
        .fh-cta h2 {
            font-size: 32px;
        }
        .fh-stat-number {
            font-size: 34px;
        }
        .fh-faq-item {
            padding: 30px 20px;
        }
        .fh-btn {
            padding: 14px 28px;
            font-size: 13px;
        }
    }
