/* ====================================
   ABOUT PAGE SPECIFIC STYLES
   ==================================== */

/* Page overrides */
body {
    background: #F9F9F9;
    color: #2c2618;
}

/* ── Shared helpers ── */
.section-eyebrow-dark {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.about-section-title {
    font-family: 'Satoshi-Variable', 'Satoshi-Black', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #070707;
    line-height: 1.2;
    margin-bottom: 28px;
}

/* ── HERO ── */
.about-hero {
    min-height: 88vh;
    background: #070707;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 60% 50%, rgba(175,144,68,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    opacity: 0.04;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    animation: aboutFadeUp 0.9s ease both;
}

.about-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: 'Satoshi-Variable', 'Satoshi-Black', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 24px;
}

.about-hero-title em {
    font-style: normal;
    color: #fff;
}

.about-hero-sub {
    font-size: 1rem;
    color: var(--gold);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto 40px;
}

/* ── STATS STRIP ── */
.about-stats {
    background: #fff;
    border-top: 1px solid rgba(175,144,68,0.12);
    border-bottom: 1px solid rgba(175,144,68,0.12);
    padding: 52px 5%;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.about-stat {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(175,144,68,0.15);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-number {
    font-family: 'Satoshi-Variable', 'Satoshi-Black', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a6e58;
}

/* ── OUR STORY ── */
.about-story {
    padding: 96px 5%;
    background: #F9F9F9;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-frame {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(175,144,68,0.15);
    box-shadow: 0 24px 60px rgba(0,0,0,0.07);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-logo-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(175,144,68,0.14);
}

.about-logo {
    width: 100%;
    height: auto;
}

.about-story-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: #7a6e58;
    margin-bottom: 18px;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

/* ── MISSION ── */
.about-mission {
    background: #070707;
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-mission-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    opacity: 0.04;
    object-fit: contain;
    pointer-events: none;
}

.about-mission-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.about-mission-title {
    font-family: 'Satoshi-Variable', 'Satoshi-Black', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-mission-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
    max-width: 680px;
    margin: 0 auto;
}

/* ── CORE VALUES ── */
.about-values {
    padding: 96px 5%;
    background: #FFFBF3;
    border-top: 1px solid rgba(175,144,68,0.12);
    border-bottom: 1px solid rgba(175,144,68,0.12);
}

.about-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid rgba(175,144,68,0.12);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(175,144,68,0.4);
    box-shadow: 0 20px 48px rgba(175,144,68,0.12);
}

.about-value-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(175,144,68,0.35);
    flex-shrink: 0;
}

.about-value-card h3 {
    font-family: 'Satoshi-Variable', 'Satoshi-Black', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #070707;
    margin-bottom: 12px;
}

.about-value-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #7a6e58;
}

/* ── CTA ── */
.about-cta {
    background: #070707;
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    opacity: 0.04;
    object-fit: contain;
    pointer-events: none;
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: 'Satoshi-Variable', 'Satoshi-Black', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-cta-title em {
    font-style: normal;
    color: #fff;
}

.about-cta-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── ANIMATION ── */
@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat { border-right: none; border-bottom: 1px solid rgba(175,144,68,0.15); padding: 24px; }
    .about-stat:nth-child(even) { border-right: none; }
    .about-stat:last-child, .about-stat:nth-last-child(2) { border-bottom: none; }
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-story-visual { order: -1; }
    .about-logo-frame { max-width: 320px; padding: 40px 32px; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .about-hero { padding: 100px 5% 60px; }
    .about-stats { padding: 40px 5%; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story, .about-mission, .about-values, .about-cta { padding: 64px 5%; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-cta-btns { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 280px; justify-content: center; }
}

/* ====================================
   TERMS & CONDITIONS PAGE STYLES
   ==================================== */

/* Terms Container - reuse about-container styles */
.terms-container {
    min-height: 100vh;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Terms Hero - reuse about-hero styles */
.terms-hero {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 60px;
}

.terms-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero-subtitle {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 25px;
    font-weight: 400;
}

.terms-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
}

/* Terms Content */
.terms-content {
    margin-bottom: 80px;
}

.terms-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 50px;
    padding: 40px;
    background: #111;
    border-radius: 15px;
    border: 1px solid rgba(160, 115, 53, 0.2);
    transition: all 0.3s ease;
}

.terms-section:hover {
    border-color: rgba(160, 115, 53, 0.4);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.05);
}

.terms-section .section-title {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gold-gradient-horizontal);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.terms-section .section-title i {
    font-size: 28px;
    background: var(--gold-gradient-horizontal);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.terms-text {
    color: #ddd;
    line-height: 1.8;
    font-size: 16px;
}

.terms-text p {
    margin-bottom: 15px;
}

.terms-text p:last-child {
    margin-bottom: 0;
}

.terms-text strong {
    color: var(--gold-medium);
    font-weight: 600;
}

/* Terms List */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #ddd;
    line-height: 1.8;
    border-bottom: 1px solid rgba(160, 115, 53, 0.1);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold-medium);
    font-size: 14px;
}

.terms-list li strong {
    color: var(--gold-medium);
    font-weight: 600;
}

/* Terms Link */
.terms-link {
    color: var(--gold-medium);
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.terms-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* Terms Category (used in Privacy Policy) */
.terms-category {
    background: #111;
    padding: 45px 35px;
    border-radius: 15px;
    border: 1px solid rgba(160, 115, 53, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 35px;
}

.terms-category:hover {
    transform: translateY(-3px);
    border-color: var(--gold-medium);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.terms-category .section-title {
    text-align: left;
    margin-bottom: 28px;
    font-size: clamp(22px, 2.5vw, 28px);
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.3;
}

.terms-category .section-title i {
    font-size: 30px;
    background: var(--gold-gradient-horizontal);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.terms-category p {
    font-size: 16px;
    line-height: 1.85;
    color: #ddd;
    margin-bottom: 18px;
}

.terms-category p:last-of-type {
    margin-bottom: 0;
}

.terms-category p strong {
    color: var(--gold-medium);
    font-weight: 600;
}

.terms-category ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-category ul li {
    font-size: 16px;
    line-height: 1.85;
    color: #ddd;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 0;
}

.terms-category ul li span {
    flex: 1;
}

.terms-category ul li:last-child {
    margin-bottom: 0;
}

.terms-category ul li i {
    color: var(--gold-medium);
    margin-top: 6px;
    flex-shrink: 0;
    font-size: 14px;
}

.terms-category ul li strong {
    color: var(--gold-medium);
    font-weight: 600;
    margin-right: 5px;
}

.terms-category a {
    color: var(--gold-medium);
    text-decoration: underline;
    text-decoration-color: rgba(160, 115, 53, 0.4);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.terms-category a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold-light);
}

/* Payment Options */
.payment-option {
    margin-top: 30px;
    padding: 25px;
    background: rgba(160, 115, 53, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--gold-medium);
}

.payment-option-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-option-title i {
    font-size: 22px;
}

.payment-option .terms-list {
    margin-top: 15px;
}

/* Cookie Overview Summary */
.cookie-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(160, 115, 53, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(160, 115, 53, 0.2);
}

.cookie-overview-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cookie-overview-item:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.cookie-overview-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    flex-shrink: 0;
}

.cookie-overview-icon.essential {
    background: linear-gradient(135deg, rgba(160, 115, 53, 0.3), rgba(160, 115, 53, 0.5));
    color: var(--gold-light);
}

.cookie-overview-icon.analytics {
    background: linear-gradient(135deg, rgba(160, 115, 53, 0.2), rgba(160, 115, 53, 0.4));
    color: var(--gold-medium);
}

.cookie-overview-icon.preferences {
    background: linear-gradient(135deg, rgba(160, 115, 53, 0.2), rgba(160, 115, 53, 0.4));
    color: var(--gold-medium);
}

.cookie-overview-content {
    flex: 1;
}

.cookie-overview-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--gold-light);
}

.cookie-overview-content p {
    font-size: 14px;
    color: #aaa;
    margin: 0 0 8px 0;
}

.cookie-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-status.always-active {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.cookie-status.requires-consent {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.cookie-section-title {
    color: var(--gold-light);
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-section-title::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(160, 115, 53, 0.3));
}

.cookie-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(160, 115, 53, 0.3));
}

/* Cookie Information Tables */
.cookie-info-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(160, 115, 53, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold-medium);
    transition: all 0.3s ease;
    position: relative;
}

.cookie-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient-horizontal);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-info-section:hover {
    background: rgba(160, 115, 53, 0.08);
    border-left-color: var(--gold-light);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(160, 115, 53, 0.1);
}

.cookie-info-section:hover::before {
    opacity: 1;
}

.cookie-info-section.cookie-essential {
    border-left-color: rgba(76, 175, 80, 0.6);
}

.cookie-info-section.cookie-analytics,
.cookie-info-section.cookie-preferences {
    border-left-color: rgba(255, 193, 7, 0.6);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-info-section h4 {
    color: var(--gold-light);
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.cookie-info-section h4 i {
    font-size: 22px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 115, 53, 0.2);
    border-radius: 8px;
}

.cookie-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-badge.essential-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.cookie-badge.consent-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.cookie-info-section p {
    margin-bottom: 15px;
    color: #ddd;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.cookie-table thead tr {
    border-bottom: 1px solid rgba(160, 115, 53, 0.3);
}

.cookie-table th {
    text-align: left;
    padding: 10px 0;
    color: var(--gold-light);
    font-weight: 600;
}

.cookie-table tbody tr {
    border-bottom: 1px solid rgba(160, 115, 53, 0.1);
}

.cookie-table td {
    padding: 10px 0;
    color: #ddd;
}

.cookie-table code {
    background: rgba(160, 115, 53, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.cookie-manage-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(160, 115, 53, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(160, 115, 53, 0.2);
    position: relative;
}

.cookie-manage-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient-horizontal);
    border-radius: 12px 12px 0 0;
}

.cookie-manage-section h3 {
    color: var(--gold-light);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-manage-section ul {
    margin-left: 20px;
    color: #ddd;
    line-height: 1.8;
}

.cookie-manage-section ul li {
    margin-bottom: 10px;
}

.cookie-manage-section ul ul {
    margin-left: 20px;
    margin-top: 8px;
}

.cookie-manage-section a {
    color: var(--gold-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-manage-section a:hover {
    color: var(--gold-medium);
}

.cookie-note {
    margin-top: 15px;
    font-size: 14px;
    color: #ddd;
    font-style: italic;
}

.cookie-note strong {
    color: var(--gold-light);
}

/* --- Privacy policy page — content column (Contact-style container + About-style cards) --- */
.contact-container.privacy-policy-page .privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.privacy-policy-page .terms-category > h2.section-title {
    text-align: left;
    margin-bottom: 28px;
}

.privacy-policy-page .terms-category {
    background: #fff;
    border: 1px solid rgba(175, 144, 68, 0.12);
    border-radius: 18px;
    box-shadow: none;
}

.privacy-policy-page .terms-category:hover {
    transform: none;
    border-color: rgba(175, 144, 68, 0.3);
    box-shadow: 0 12px 40px rgba(175, 144, 68, 0.09);
}

.privacy-policy-page .terms-category > h2.section-title {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #070707;
}

.privacy-policy-page .terms-category > h2.section-title i {
    background: rgba(175, 144, 68, 0.12);
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.privacy-policy-page .terms-category p {
    color: #5a5040;
}

.privacy-policy-page .terms-category p strong {
    color: #2c2618;
}

.privacy-policy-page .terms-category ul li {
    color: #5a5040;
    border-bottom-color: rgba(175, 144, 68, 0.1);
}

.privacy-policy-page .terms-category ul li i {
    color: var(--gold);
}

.privacy-policy-page .terms-category ul li strong {
    color: #2c2618;
}

.privacy-policy-page .terms-category a {
    color: var(--gold);
    text-decoration-color: rgba(175, 144, 68, 0.4);
}

.privacy-policy-page .terms-category a:hover {
    color: #2c2618;
    text-decoration-color: rgba(44, 38, 24, 0.5);
}

/* Cookie policy subsection — inner components only (outer card uses .privacy-policy-page .terms-category) */
.terms-category.cookie-policy-section .cookie-overview {
    background: #f9f7f2;
    border: 1px solid rgba(175, 144, 68, 0.15);
}

.terms-category.cookie-policy-section .cookie-overview-item {
    background: #fff;
    border: 1px solid rgba(175, 144, 68, 0.1);
}

.terms-category.cookie-policy-section .cookie-overview-item:hover {
    background: #fffefb;
    border-color: rgba(175, 144, 68, 0.22);
}

.terms-category.cookie-policy-section .cookie-overview-content h4 {
    color: #2c2618;
}

.terms-category.cookie-policy-section .cookie-overview-content p {
    color: #7a6f5c;
}

.terms-category.cookie-policy-section .cookie-status.always-active {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border-color: rgba(46, 125, 50, 0.25);
}

.terms-category.cookie-policy-section .cookie-status.requires-consent {
    background: rgba(183, 137, 0, 0.12);
    color: #8a6d00;
    border-color: rgba(183, 137, 0, 0.28);
}

.terms-category.cookie-policy-section .cookie-section-title {
    color: #070707;
}

.terms-category.cookie-policy-section .cookie-section-title::before,
.terms-category.cookie-policy-section .cookie-section-title::after {
    background: linear-gradient(to right, transparent, rgba(175, 144, 68, 0.2));
}

.terms-category.cookie-policy-section .cookie-section-title::after {
    background: linear-gradient(to left, transparent, rgba(175, 144, 68, 0.2));
}

.terms-category.cookie-policy-section .cookie-info-section {
    background: #fffcf7;
    border: 1px solid rgba(175, 144, 68, 0.12);
    border-left-width: 4px;
    border-radius: 14px;
}

.terms-category.cookie-policy-section .cookie-info-section:hover {
    background: #fffefb;
    box-shadow: 0 8px 28px rgba(175, 144, 68, 0.08);
}

.terms-category.cookie-policy-section .cookie-info-section.cookie-essential {
    border-left-color: rgba(46, 125, 50, 0.45);
}

.terms-category.cookie-policy-section .cookie-info-section.cookie-analytics,
.terms-category.cookie-policy-section .cookie-info-section.cookie-preferences {
    border-left-color: rgba(175, 144, 68, 0.55);
}

.terms-category.cookie-policy-section .cookie-info-section h4 {
    color: #070707;
}

.terms-category.cookie-policy-section .cookie-info-section h4 i {
    background: rgba(175, 144, 68, 0.14);
    color: var(--gold);
}

.terms-category.cookie-policy-section .cookie-badge.essential-badge {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border-color: rgba(46, 125, 50, 0.28);
}

.terms-category.cookie-policy-section .cookie-badge.consent-badge {
    background: rgba(183, 137, 0, 0.12);
    color: #8a6d00;
    border-color: rgba(183, 137, 0, 0.28);
}

.terms-category.cookie-policy-section .cookie-info-section p {
    color: #5a5040;
}

.terms-category.cookie-policy-section .cookie-table thead tr {
    border-bottom-color: rgba(175, 144, 68, 0.2);
}

.terms-category.cookie-policy-section .cookie-table th {
    color: #2c2618;
}

.terms-category.cookie-policy-section .cookie-table tbody tr {
    border-bottom-color: rgba(175, 144, 68, 0.1);
}

.terms-category.cookie-policy-section .cookie-table td {
    color: #5a5040;
}

.terms-category.cookie-policy-section .cookie-table code {
    background: rgba(175, 144, 68, 0.1);
    color: #4a3f2a;
}

.terms-category.cookie-policy-section .cookie-note {
    color: #6b6152;
}

.terms-category.cookie-policy-section .cookie-note strong {
    color: #2c2618;
}

.terms-category.cookie-policy-section .cookie-manage-section {
    background: #f9f7f2;
    border: 1px solid rgba(175, 144, 68, 0.15);
}

.terms-category.cookie-policy-section .cookie-manage-section h3 {
    color: #070707;
}

.terms-category.cookie-policy-section .cookie-manage-section ul,
.terms-category.cookie-policy-section .cookie-manage-section ul li {
    color: #5a5040;
}

.terms-category.cookie-policy-section .cookie-manage-nested-note {
    margin-top: 8px;
    font-size: 14px;
    color: #6b6152;
    line-height: 1.65;
}

.terms-category.cookie-policy-section .cookie-manage-nested-note strong {
    color: #2c2618;
}

.terms-category.cookie-policy-section .cookie-policy-footnote {
    margin-top: 25px;
    color: #5a5040;
    font-size: 16px;
    line-height: 1.75;
}

.terms-category.cookie-policy-section .cookie-policy-footnote-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.terms-category.cookie-policy-section .cookie-policy-footnote-link:hover {
    color: #2c2618;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .terms-section .section-title {
        font-size: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .terms-list li {
        padding-left: 25px;
    }

    .terms-category {
        padding: 30px 22px;
        margin-bottom: 25px;
    }

    .terms-category .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .terms-category .section-title i {
        font-size: 24px;
    }

    .terms-category p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .terms-category ul li {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 12px;
        gap: 10px;
    }

    .terms-category ul li i {
        font-size: 13px;
        margin-top: 5px;
    }

    .payment-option {
        padding: 20px 15px;
    }

    .payment-option-title {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 0;
    }

    .cookie-info-section,
    .cookie-manage-section {
        padding: 15px;
    }

    .cookie-overview {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }

    .cookie-overview-item {
        padding: 12px;
    }

    .cookie-section-title {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .cookie-section-title::before,
    .cookie-section-title::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .terms-category {
        padding: 25px 18px;
        margin-bottom: 20px;
    }

    .terms-category .section-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .terms-category .section-title i {
        font-size: 22px;
    }

    .terms-category p,
    .terms-category ul li {
        font-size: 14px;
        line-height: 1.7;
    }
}
