/* =========================================
  HERO
========================================= */

:root {
    --dark-teal: #063b3f;
    --dark-teal-2: #08494d;
    --teal: #078e95;
    --teal-light: #e8fafa;
    --teal-soft: #f3fcfc;
    --orange: #f47721;
    --orange-dark: #df610f;
    --text: #173b3d;
    --muted: #6b8082;
    --border: #d9e8e9;
    --white: #ffffff;
    --shadow: 0 12px 35px rgba(4, 65, 68, 0.07);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 70px;
    background: linear-gradient(160deg, #cff9ff 0%, #ffffff 55%, #fff6d8 100%);
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #e9fafa;
    top: -190px;
    right: -160px;
    opacity: 0.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 27px;
    height: 2px;
    background: var(--orange);
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 800;
    margin-bottom: 18px;
}

.page-hero h1 span {
    color: var(--teal);
}

.hero-description {
    max-width: 680px;
    color: var(--muted);
    font-size: 15px;
    margin: 0 auto;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 23px;
    padding: 8px 13px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--muted);
    font-size: 11px;
    box-shadow: var(--shadow);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
}

/* =========================================
PRIVACY SECTION
========================================= */
.privacy-section {
    padding: 75px 0;
    background: #ffffff;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 55px;
    align-items: start;
}

/* =========================================
 SIDEBAR
========================================= */
.privacy-sidebar {
    position: sticky;
    top: 95px;
    background: #0d2b2f;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.sidebar-title {
    color: var(--dark-teal);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 13px;
}

.privacy-sidebar a {
    display: block;
    color: #f1f1f1;
    font-size: 16px;
    text-decoration: none;
    padding: 7px 0;
    border-bottom: 1px solid #5a5a5a;
    transition: 0.2s ease;
}

.privacy-sidebar a:last-child {
    border-bottom: none;
}

.privacy-sidebar a:hover {
    color: var(--teal);
    padding-left: 4px;
}

/* =========================================
 CONTENT
========================================= */
.privacy-content {
    max-width: 100%;
}

.intro-card {
    background: linear-gradient(135deg, #e5fafa, #f7ffff);
    border: 1px solid #d5eeee;
    border-radius: 15px;
    padding: 24px 25px;
    margin-bottom: 38px;
}

.intro-card strong {
    display: block;
    color: var(--dark-teal);
    font-size: 18px;
    margin-bottom: 6px;
}

.intro-card p {
    color: #60787a;
    font-size: 16px;
    margin: 0;
}

/* =========================================
 PRIVACY BLOCKS
========================================= */
.privacy-block {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.privacy-number {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.privacy-block h2 {
    color: var(--dark-teal);
    font-size: 23px;
    /*letter-spacing: -0.7px;*/
    margin-bottom: 12px;
    font-weight: 500;
}

.privacy-block h3 {
    color: var(--dark-teal);
    font-size: 15px;
    margin-top: 22px;
    margin-bottom: 8px;
}

.privacy-block p {
    color: #617779;
    font-size: 16px;
    margin-bottom: 12px;
}

.privacy-block ul {
    padding-left: 20px;
    color: #617779;
    font-size: 16px;
    margin-bottom: 15px;
}

.privacy-block li {
    margin-bottom: 7px;
}

/* =========================================
 INFO CARDS
========================================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 18px 0 22px;
}

.info-card {
    padding: 17px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 11px;
}

.info-card .icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 8px;
    background: var(--teal-light);
    color: var(--teal);
    font-size: 16px;
    font-weight: 800;
}

.info-card h4 {
    color: var(--dark-teal);
    font-size: 18px;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 16px;
    margin: 0;
}

/* =========================================
 HIGHLIGHT BOX
========================================= */
.highlight-box {
    background: #fff8f0;
    border: 1px solid #f8dfca;
    border-left: 3px solid var(--orange);
    border-radius: 9px;
    padding: 15px 17px;
    margin: 17px 0;
}

.highlight-box p {
    margin: 0;
    color: #80532e;
    font-size: 12px;
}

/* =========================================
 DATA TABLE
========================================= */
.data-table-wrapper {
    overflow-x: auto;
    margin: 18px 0 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.data-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    margin: 0;
}

.data-table th {
    background: var(--dark-teal);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 12px 14px;
    text-align: left;
}

.data-table td {
    color: #617779;
    font-size: 11px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    vertical-align: top;
}

.data-table tr:nth-child(even) td {
    background: #f8fcfc;
}

/* =========================================
 CONTACT CARD
========================================= */
.contact-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 23px;
    margin-top: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-card p {
    color: #b9d0d1;
    font-size: 16px;
    margin-bottom: 10px;

}

.contact-card a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
}

.contact-card a:hover {
    color: #7de0e3;
}

/* =========================================
 CTA
========================================= */
.cta {
    padding: 70px 0;
    background: linear-gradient(120deg, #078c94, #04a3aa);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: clamp(28px, 3vw, 36px);
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}

.cta p {
    max-width: 590px;
    margin: 0 auto 25px;
    color: #c9eeee;
    font-size: 14px;
}
