
    /* ========== TERMS & CONDITIONS PAGE CUSTOM STYLES ========== */
    .nav-link { color: #FFF !important; }
    .topbar-toolbar a { color: #FFF !important; }

    .policy-hero {
        background: linear-gradient(135deg, #812529 0%, #a0373c 100%);
        padding: 80px 0 60px;
        position: relative;
        overflow: hidden;
    }

    .policy-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1.5px, transparent 1.5px);
        background-size: 25px 25px;
        pointer-events: none;
    }

    .policy-hero-content {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .policy-hero h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 56px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .policy-hero p {
        font-size: 18px;
        color: rgba(255,255,255,0.9);
        max-width: 600px;
        margin: 0 auto;
        font-family: 'Petit Formal Script', cursive;
    }

    .gold-divider {
        width: 80px;
        height: 3px;
        background: #d4af37;
        margin: 20px auto 0;
        border-radius: 3px;
    }

    /* Policy Content Section */
    .policy-section {
        padding: 70px 0;
        background: #fff;
    }

    .section-title-custom {
        font-family: 'Cormorant Garamond', serif;
        font-size: 38px;
        font-weight: 600;
        color: #812529;
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

    .section-title-custom::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: #d4af37;
    }

    .policy-card {
        background: #fefaf5;
        border-radius: 25px;
        padding: 35px;
        margin-bottom: 30px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .policy-card:hover {
        box-shadow: 0 15px 35px rgba(129, 37, 41, 0.08);
        border-color: rgba(212, 175, 55, 0.4);
    }

    .policy-card h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 600;
        color: #812529;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .policy-card h3 i {
        color: #d4af37;
        font-size: 28px;
    }

    .policy-card h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 20px;
        font-weight: 600;
        color: #812529;
        margin: 25px 0 12px 0;
    }

    .policy-card h4:first-of-type {
        margin-top: 0;
    }

    .policy-card p, .policy-card li {
        font-size: 15px;
        line-height: 1.7;
        color: #6a6a6a;
    }

    .policy-card ul, .policy-card ol {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .policy-card li {
        margin-bottom: 8px;
    }

    .highlight-box {
        background: linear-gradient(145deg, #fff9f5, #fff5ed);
        border-left: 4px solid #d4af37;
        padding: 20px 25px;
        border-radius: 15px;
        margin: 20px 0;
    }

    .warning-box {
        background: #fff5f5;
        border-left: 4px solid #e74c3c;
        padding: 20px 25px;
        border-radius: 15px;
        margin: 20px 0;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 20px;
    }

    .info-item {
        background: white;
        border-radius: 20px;
        padding: 25px;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.15);
        transition: all 0.3s;
    }

    .info-item:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.3);
    }

    .info-item i {
        font-size: 40px;
        color: #d4af37;
        margin-bottom: 15px;
    }

    .info-item h5 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        font-weight: 600;
        color: #812529;
        margin-bottom: 10px;
    }

    .info-item p {
        font-size: 13px;
        color: #6a6a6a;
        margin: 0;
    }

    .last-updated {
        text-align: center;
        font-size: 13px;
        color: #999;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e0d6cc;
    }

    /* Table Styles */
    .terms-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    .terms-table th, .terms-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e0d6cc;
    }

    .terms-table th {
        background: #fef5e8;
        color: #812529;
        font-weight: 600;
    }

    .terms-table tr:hover {
        background: #fefaf5;
    }

    /* CTA Banner */
    .cta-banner-custom {
        background: linear-gradient(135deg, #812529 0%, #a0373c 100%);
        margin: 30px 0 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .policy-hero h1 { font-size: 40px; }
        .policy-hero p { font-size: 16px; }
        .section-title-custom { font-size: 32px; }
        .policy-card { padding: 25px; }
        .info-grid { grid-template-columns: 1fr; }
        .terms-table th, .terms-table td { padding: 8px 10px; font-size: 13px; }
    }