/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    border: none;
    outline: none;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 34px;
    color: #25D366;
    line-height: 1;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transform: scale(1.6);
    transform-origin: center;
}

/* CSS Variables & Reset */
:root {
    --color-brown-dark: #5D4037;
    --color-brown-light: #8D6E63;
    --color-beige-bg: #FFF8E1;
    /* Light paper color */
    --color-beige-dark: #F5F5DC;
    --color-white: #ffffff;
    
    /* Global Font Colors */
    --color-heading: #8B5e3c;
    --color-body-text: #2b2b2b;

    --font-script: 'Dancing Script', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    --border-radius-lg: 30px;
    --border-radius-md: 20px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-serif);
    background-color: var(--color-beige-bg);
    color: var(--color-body-text);
    /* Subtle paper texture overlay */
    background-image:
        linear-gradient(rgba(255, 248, 225, 0.9), rgba(255, 248, 225, 0.9)),
        url('https://www.transparenttextures.com/patterns/cream-paper.png');
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-script);
    color: var(--color-heading);
}

span, li, a, label, input, textarea {
    color: var(--color-body-text);
}

/* Top Banner */
.top-banner {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    background-color: #FFF8E1;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-brown-dark);
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Wood Header */
.wood-header {
    background-image: url('images/Wooden_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #fff;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding-bottom: 10px;
}

.logo-main {
    font-style: italic;
}

.logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 5px;
    vertical-align: middle;
    color: #eee;
}

/* Logo Image */
.logo-img {
    height: 80px;
    /* Adjust as needed */
    width: auto;
    max-width: 100%;
    margin-bottom: 5px;
    /* Alignment fix */
}

.store-badge {
    background-color: #fff;
    color: #5d4037;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-envelope {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -10%);
    text-align: center;
    width: 34%;
    color: #5d4037;
    max-width: 440px;
    padding: 0;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #8B5e3c;
    font-family: var(--font-serif);
    font-weight: 600;
    font-style:inherit;
}

.hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b6b6b;
    font-weight: 400;
    font-family: var(--font-sans);
    max-width: 440px;
    text-align: center;
    align-items: center;
    justify-content: center;

}

/* General Section Styles */
.section {
    padding: 60px 0px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Tighter spacing for About / What We Do / How It Works */
.about-section,
.what-we-do-section,
.how-it-works-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Tighter spacing for FAQ / Contact */
.faq-section,
.contact-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.title-icon {
    font-size: 2rem;
    transform: rotate(-15deg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-brown-dark);
}

/* Section title color overrides */
.about-section .section-title,
.what-we-do-section .section-title,
.how-it-works-section .section-title,
.faq-section .section-title,
.contact-section .section-title {
    color: #8B5e3c;
}

.section-title-wrapper.white .section-title,
.section-title-wrapper.white .title-icon {
    color: var(--color-white);
}

.section-title-wrapper.white .title-pen-icon {
    color: #ffffff;
    font-size: 2rem;
    transform: rotate(-15deg);
}

.section-title-wrapper.white .title-pen-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transform: rotate(-15deg);
    margin-top: 2px;
}

.section-title-wrapper.white {
    gap: 8px;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

.highlight-text {
    color: #a0522d;
    font-weight: bold;
}

/* Timeline / How It Works */
.how-it-works-section {
    background: url('images/paper-background.jpg') center/cover no-repeat;
    padding-bottom: 40px;
}

.timeline-container {
    position: relative;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
}

.timeline-container::before {
    /* Vertical Line */
    content: '';
    position: absolute;
    left: 100px;
    top: 50px;
    bottom: 50px;
    width: 6px;
    background: url('images/Wooden_background.jpg') center/cover no-repeat;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    background: url('images/Wooden_background.jpg') center/cover no-repeat;
    border: 4px solid #5D4037;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-left: -40px;
}

.timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-icon.icon-only {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/Wooden_background.jpg') center/cover no-repeat;
}

.timeline-icon.icon-only i {
    font-size: 2rem;
    color: #fff;
}

.title-icon-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.timeline-content {
    margin-left: 25px;
    padding-top: 5px;
    flex: 1;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #8B5e3c;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #2b2b2b;
    line-height: 1.6;
    text-align: justify;
}

.timeline-content .highlight-text {
    color: #8B5e3c;
    font-weight: 600;
    text-decoration: underline;
}

/* Timeline Bottom Note */
.timeline-note {
    max-width: 800px;
    margin: 30px auto 0;
    background: linear-gradient(to right, #f5e6d3, #fff8e1);
    border: 3px solid #5D4037;
    border-radius: 50px;
    padding: 18px 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.timeline-note p {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #2b2b2b;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.timeline-note .note-heart {
    width: 50px;
    height: 50px;
    background: #f5e6d3;
    border: 3px solid #5D4037;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-note .note-heart i {
    font-size: 1.5rem;
    color: #8B5e3c;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    background: url('images/Wooden_background.jpg');
    padding: 60px 20px;
    color: var(--color-white);
    background-blend-mode: overlay;
}

.wood-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--color-beige-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    border: 8px solid #5d4037;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #ccc;
}

.card-details {
    padding: 20px;
    text-align: left;
    color: var(--color-brown-dark);
}

.card-details h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-details .price {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.card-details .description {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
}

.card-details .note {
    font-size: 0.8rem;
    font-style: italic;
    color: #8D6E63;
    margin-bottom: 20px;
}

.order-btn {
    background: url('images/Wooden_background.jpg') center/cover no-repeat;
    color: #ffffff;
    border: 2px solid #5D4037;
    padding: 10px 30px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-family: var(--font-serif);
    font-weight: 600;
    cursor: pointer;
    float: right;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;!important;
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: 4px solid var(--color-brown-dark);
    border-radius: 50px;
    padding: 15px 30px;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brown-dark);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    outline: none;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section - New Box Style */
.faq-question-box {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 4px solid var(--color-brown-dark);
    border-radius: 50px;
    padding: 15px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.faq-q {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-brown-dark);
}

.faq-a {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #555;
}

.faq-answer p {
    padding: 15px 0;
}

/* Contact Section */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    text-align: left;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    margin-top: 20px;
    color: #6d4c41;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 5px solid var(--color-brown-dark);
    border-radius: 30px;
    background-color: #fffaf0;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
}

.contact-form textarea {
    border-radius: 40px;
    /* Slightly more rounded for large box */
    height: 120px;
    resize: none;
}

/* Submit Button Container */
.form-submit-container {
    margin-top: 25px;
    text-align: center;
}

/* Submit Button */
.submit-btn {
    background: url('images/Wooden_background.jpg') center/cover no-repeat;
    color: #ffffff !important;
    border: 2px solid #5D4037;
    padding: 14px 45px;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 160px;
}

.submit-btn .btn-text,
.submit-btn span {
    color: #ffffff !important;
}

.submit-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading Spinner */
.submit-btn .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #333;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    max-width: 350px;
}

.toast.success {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.toast.error {
    background: linear-gradient(135deg, #f44336, #c62828);
}

.toast-icon {
    font-size: 1.3rem;
}

@keyframes slideIn {
    from {
    background: transparent;
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Footer */
.main-footer {
    background: #5D4037;
    background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    color: #fff;
    padding-top: 40px;
    text-align: center;
}

.wood-texture-footer {
    padding-bottom: 30px;
}

.logo-script-white {
    font-family: 'Dancing Script';
    font-size: 3rem;
    color: #fff;
}

.logo-stories-white {
    font-family: 'Dancing Script';
    font-size: 1.8rem;
    color: #fff;
}

.store-badge-white {
    background: #fff;
    color: #5D4037;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    color: #5D4037;
    background: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pay-icon {
    height: 30px;
    background: #fff;
    padding: 2px 5px;
    border-radius: 4px;
}

.footer-bottom {
    background-color: #F5F5DC;
    color: #5D4037;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
}

.compliance-links span,
.reg-info span {
    margin: 0 5px;
}

.reg-info {
    margin: 10px 0;
    background-color: #6d4c41;
    /* Brown bar for reg info shown in image */
    color: #fff;
    padding: 5px;
    display: inline-block;
    width: 100%;
}

.copyright {
    margin: 10px 0;
    font-weight: bold;
    font-size: 1rem;
}

.developer-credit {
    background: linear-gradient(to right, #8D6E63, #5D4037);
    /* Simulated gradient bar ? Or just overlaid wood */
    color: #fff;
    /* Actually image shows text on wood */
    background: transparent;
    color: #5D4037;
    margin-top: 5px;
}

/* Regulatory strip specifically like image */
.reg-info {
    background: #5D4037;
    width: 100%;
    color: white;
    padding: 8px 0;
    font-weight: bold;
}
/* ===============================
   PREMIUM PRICING BANNER FIX
================================ */

.pricing-banner-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* OUTER CARD */
.pricing-banner {
    background: #fffaf0;
    border-radius: 45px;
    padding: 8px;
    border: 6px solid #7a4a2e;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    overflow: hidden;
}

/* IMAGE */
.banner-image {
    overflow: hidden;
    border-radius: 35px 35px 0 0;
}

.banner-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* CONTENT PANEL */
.banner-content {
    background: #fffaf0;
    padding: 25px 30px;
}

/* TITLE ROW - Title and Button on same line */
.banner-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 20px;
}

/* TEXT */
.banner-content {
    color: #5D4037;
}

.banner-title-row h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: #5D4037;
    margin: 0;
    flex: 1;
}

.banner-content .price {
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #3e2723;
    font-size: 1rem;
}

.banner-content .description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.banner-content .note {
    font-size: 0.85rem;
    font-style: italic;
    color: #8D6E63;
}

/* BUTTON */
.pricing-banner .order-btn {
    background: url('images/Wooden_background.jpg') center/cover no-repeat;
    border-radius: 999px;
    padding: 12px 34px;
    font-size: 1.05rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    white-space: nowrap;
    color: #ffffff;
    border: 2px solid #5D4037;
    cursor: pointer;
    font-family: var(--font-serif);
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-banner .order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
/* ===============================
   PREMIUM WOOD FOOTER
================================ */

.main-footer {
    background: url("images/Wooden_background.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    font-family: var(--font-sans);
}

/* TOP AREA */
.footer-top {
    padding: 45px 20px 30px;
}

/* LOGO */
.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

/* CONTACT */
.footer-contact p {
    margin: 8px 0;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus {
    text-decoration: underline;
}

.icon-circle {
    background: #fff;
    color: #5D4037;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* SOCIAL */
.footer-social {
    margin: 20px 0;
}

.footer-social a {
    background: #fff;
    color: #5D4037;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-size: 1.3rem;
    text-decoration: none;
}

/* PAYMENTS */
.footer-payments {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-payments .payment-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-payments .payment-row.phonepe img {
    height: 52px;
}

.footer-payments img {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    height: 46px;
    object-fit: contain;
}

/* STRIPS */
.footer-strip {
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-strip.light {
    background: #f5f5dc; 
     color: #5D4037; 
}

.footer-strip.dark {
    /* background: #5D4037; */
    color: #fff;
}

/* BOTTOM */
/* ===============================
   FOOTER BOTTOM STRIPS (REFERENCE MATCH)
================================ */

.footer-bottom {
    text-align: center;
    font-family: var(--font-sans);
}

/* TOP LIGHT STRIP */
.footer-copy {
    background: #f5f5dc;
    color: #5D4037;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px;
    border-top: none;
    border-bottom: none;
}

/* BOTTOM DARK STRIP */
.footer-dev {
    background: url("images/Wooden_background.jpg") center/cover no-repeat;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 10px;
    letter-spacing: 0.5px;
}

/* HEART */
.footer-dev i {
    color: #ffffff;
    margin: 0 4px;
}

/* DEV NAME */
.dev-name {
    color: #2e6cff; /* FAVIT blue */
    font-weight: 800;
    margin: 0 4px;
}

.footer-dev .dev-name {
    text-decoration: none;
}

/* ===============================
   POLICY / LEGAL PAGES
================================ */

.policy-header {
    background: url("images/Wooden_background.jpg") center/cover no-repeat;
    padding: 30px 20px;
    text-align: center;
}

.policy-header h1 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: #fff;
}

/* PAPER BODY */
.policy-body {
    min-height: 70vh;
    background: url("images/paper-background.jpg") center/cover no-repeat;
    padding: 60px 80px;
}

.policy-body h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-body h2:first-child {
    margin-top: 0;
}

.policy-body p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-body-text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-body ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-body ul li {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-body-text);
    line-height: 1.8;
    margin-bottom: 5px;
}

.policy-body .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.policy-body a {
    color: var(--color-heading);
    text-decoration: underline;
}

/* FOOTER LINKS */
.footer-links a {
    color: #5D4037;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}


/* ================================
   FORCE DESKTOP VIEW ON MOBILE
================================ */

.desktop-wrapper {
    margin: 0 auto;
    transform-origin: top center;
}

/* Scale down on small screens */
@media (max-width: 1200px) {
    .desktop-wrapper {
        transform: scale(calc(100vw / 1200));
    }

    body {
        overflow-x: hidden;
    }
}

/* Disable ALL mobile adjustments */
@media (max-width: 768px) {
    * {
        max-width: none !important;
    }
}