*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #FEF7EF;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
}

/* Dashboard */
.support-wrapper{
    display: flex;
    min-height: 100vh;
}

.support-body {
    display: flex;
    flex-direction: column;
    align-items: center; /* ← this centers all children including the cards row */
}

.support-heading-area {
    text-align: center;
    margin: 60px 0 40px 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

.support-main-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.support-sub-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin: 0;
}

/* Contact cards */
.contact-cards-row {
    display: flex;
    gap: 28px;
    justify-content: center;
    width: 100%;
    max-width: 840px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #FFFFFF;
    border: 1.5px solid #FFCF80;
    border-radius: 12px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.25s, transform 0.25s;
}

a.contact-card {
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    box-shadow: 0 6px 24px rgba(169, 50, 38, 0.13);
    transform: translateY(-2px);
}

a.contact-card:hover .contact-card-value {
    color: #B0182A;
}

.contact-icon-circle {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: #FFE2AB80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #F48922;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-card-label {
    font-size: 13px;
    font-weight: 600;
    color: #B0182A;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-card-value {
    font-size: 15.5px;
    font-weight: 600;
    margin: 0;
    transition: color 0.2s ease;
}

.contact-card-note {
    font-size: 12px;
    color: #444;
    margin: 0;
}

/* ================= PRIVACY POLICY & TERMS OF SERVICES ================= */

.privacy-policy-hero {
    background: linear-gradient(180deg, #FFF3E4 0%, #FEF7EF 100%);
    padding: 35px 0 25px;
    border-bottom: 1.5px solid #FFE2AB;
    position: relative;
}

.privacy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFE2AB80;
    color: #B0182A;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 1px solid #FFCF80;
    margin-bottom: 10px;
}

.privacy-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #B0182A;
    margin: 8px 0;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.divider-red {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
}

.divider-red span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F48922, transparent);
}

.divider-red img {
    height: 22px;
    margin: 0 10px;
}

.privacy-meta-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.privacy-meta-pill {
    background: #FFFFFF;
    border: 1px solid #FFCF80;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    color: #444;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    display: inline-flex;
    align-items: center;
}

.privacy-meta-pill i {
    color: #F48922;
}

.back-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B0182A;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1.5px solid #FFCF80;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.back-link-btn:hover {
    background: #B0182A;
    color: #FFFFFF;
    border-color: #B0182A;
    transform: translateX(-2px);
}

/* Page Section */
.privacy-page-section {
    padding: 40px 0 60px;
    background: #FEF7EF;
}

/* TOC Sidebar */
.privacy-sidebar-wrapper {
    position: sticky;
    top: 25px;
}

.privacy-toc-card {
    background: #FFFFFF;
    border: 1.5px solid #FFCF80;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(176, 24, 42, 0.05);
    max-height: calc(100vh - 50px);
    overflow-y: auto;
}

.privacy-toc-header {
    font-size: 15.5px;
    font-weight: 700;
    color: #B0182A;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFE2AB;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.privacy-toc-item {
    margin: 0;
}

.privacy-toc-link {
    display: block;
    padding: 7px 10px;
    font-size: 13px;
    color: #555555;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.privacy-toc-link:hover {
    background: #FFF5EA;
    color: #B0182A;
    padding-left: 14px;
}

.privacy-toc-link.active {
    background: #FFF5EA;
    color: #B0182A;
    font-weight: 700;
    border-left: 3.5px solid #F48922;
    padding-left: 12px;
}

/* Main Content Card */
.privacy-content-card {
    background: #FFFFFF;
    border: 1.5px solid #FFCF80;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(176, 24, 42, 0.05);
}

.privacy-block {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #FFE2AB;
    scroll-margin-top: 30px;
}

.privacy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #B0182A;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section-title i {
    color: #F48922;
}

.privacy-sub-heading {
    font-size: 15.5px;
    font-weight: 700;
    color: #F48922;
    margin: 22px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.privacy-paragraph {
    font-size: 14.5px;
    line-height: 1.75;
    color: #333333;
    margin-bottom: 12px;
}

.privacy-info-box {
    background: #FFF9F2;
    border-left: 4px solid #F48922;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 18px 0;
    border-top: 1px solid #FFE2AB;
    border-right: 1px solid #FFE2AB;
    border-bottom: 1px solid #FFE2AB;
}

.privacy-list {
    padding-left: 22px;
    margin-bottom: 16px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #333333;
}

.privacy-list li {
    margin-bottom: 6px;
}

.privacy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #FFE2AB;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.privacy-table th {
    background: #FFF5EA;
    color: #B0182A;
    font-weight: 700;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 2px solid #FFCF80;
    text-align: left;
}

.privacy-table td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #FFE2AB;
    color: #333333;
}

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

@media (max-width: 991px) {
    .privacy-sidebar-wrapper {
        position: static;
        margin-bottom: 25px;
    }

    .privacy-toc-card {
        max-height: 300px;
    }

    .privacy-content-card {
        padding: 24px 20px;
    }
}
