     *,
     *::before,
     *::after {
         box-sizing: border-box;
         margin: 0;
         padding: 0;
     }

     :root {
         --gold: #1aafef;
         --gold-light: #1aafef;
         --gold-pale: #F5E9C8;
         --dark: #fd62bc;
         --dark-2: #fd62bc;
         --dark-3: #fd62bc;
         --white-color: #ffffff;
         --text-muted: #000000 !important;
         --border-color: rgba(26, 175, 239, 0.2);
     }

     html {
         scroll-behavior: smooth;
     }


     /* ── HERO BANNER ── */
     .terms-hero {
         position: relative;
         background: var(--dark-2);
         padding: 100px 20px 70px;
         text-align: center;
         overflow: hidden;
         border-bottom: 1px solid var(--border);
     }

     .terms-hero::before {
         content: '';
         position: absolute;
         inset: 0;
         background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
         pointer-events: none;
     }

     .terms-hero .breadcrumb {
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 8px;
         font-size: 13px;
         color: var(--text-muted);
         margin-bottom: 24px;
         letter-spacing: 0.05em;
     }

     .terms-hero .breadcrumb a {
         color: var(--gold);
         text-decoration: none;
         transition: opacity 0.2s;
     }

     .terms-hero .breadcrumb a:hover {
         opacity: 0.75;
     }

     .terms-hero .breadcrumb span {
         color: var(--text-muted);
     }

     .terms-hero h1 {
         font-family: 'Playfair Display', serif;
         font-size: clamp(2.2rem, 5vw, 3.8rem);
         font-weight: 900;
         color: var(--white);
         line-height: 1.15;
         margin-bottom: 16px;
     }

     .terms-hero h1 em {
         font-style: italic;
         color: var(--gold);
     }

     .terms-hero .hero-meta {
         font-size: 13px;
         color: var(--text-muted);
         letter-spacing: 0.04em;
     }

     .terms-hero .hero-meta strong {
         color: var(--gold-light);
     }

     /* ── LAYOUT ── */
     .terms-wrapper {
         max-width: 1250px;
         margin: 0 auto;
         padding: 60px 20px 100px;
         display: grid;
         grid-template-columns: 260px 1fr;
         gap: 48px;
         align-items: start;
     }

     @media (max-width: 900px) {
         .terms-wrapper {
             grid-template-columns: 1fr;
             padding: 40px 16px 80px;
         }
     }

     /* ── SIDEBAR NAV ── */
     .terms-sidebar {
         position: sticky;
         top: 30px;
     }

     .sidebar-label {
         font-size: 11px;
         letter-spacing: 0.15em;
         text-transform: uppercase;
         color: var(--gold);
         margin-bottom: 16px;
         font-weight: 500;
     }

     .sidebar-nav {
         list-style: none;
         border-left: 2px solid var(--border);
         padding-left: 0;
     }

     .sidebar-nav li a {
         display: block;
         padding: 9px 16px;
         font-size: 13.5px;
         color: var(--text-muted);
         text-decoration: none;
         border-left: 2px solid transparent;
         margin-left: -2px;
         transition: color 0.2s, border-color 0.2s;
         line-height: 1.4;
     }

     .sidebar-nav li a:hover,
     .sidebar-nav li a.active {
         color: var(--gold-light);
         border-left-color: var(--gold);
     }

     .sidebar-contact {
         margin-top: 32px;
         background: var(--dark-3);
         border: 1px solid var(--border);
         border-radius: 12px;
         padding: 20px;
     }

     .sidebar-contact p {
         font-size: 13px;
         color: white;
         margin-bottom: 10px;
         line-height: 1.5;
     }

     .sidebar-contact a {
         display: inline-block;
         font-size: 13px;
         color: white;
         text-decoration: none;
         word-break: break-all;
     }

     .sidebar-contact a:hover {
         text-decoration: underline;
     }

     @media (max-width: 900px) {
         .terms-sidebar {
             position: static;
         }

         .sidebar-nav {
             display: none;
         }
     }

     /* ── MAIN CONTENT ── */
     .terms-content {
         min-width: 0;
     }

     .terms-intro {
         background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
         border: 1px solid var(--border);
         border-radius: 12px;
         padding: 28px 32px;
         margin-bottom: 48px;
     }

     .terms-intro p {
         font-size: 15px;
         color: #313030;
         line-height: 1.8;
     }

     .terms-intro p strong {
         color: var(--gold-light);
     }

     /* ── SECTION BLOCK ── */
     .terms-section {
         margin-bottom: 52px;
         scroll-margin-top: 30px;
     }

     .section-header {
         display: flex;
         align-items: center;
         gap: 14px;
         margin-bottom: 20px;
         padding-bottom: 14px;
         border-bottom: 1px solid var(--border);
     }

     .section-number {
         width: 38px;
         height: 38px;
         border-radius: 50%;
         background: rgba(201, 168, 76, 0.12);
         border: 1px solid var(--gold);
         display: flex;
         align-items: center;
         justify-content: center;
         font-family: 'Playfair Display', serif;
         font-size: 15px;
         font-weight: 700;
         color: var(--gold);
         flex-shrink: 0;
     }

     .section-header h2 {
         font-family: 'Playfair Display', serif;
         font-size: clamp(1.15rem, 2.5vw, 1.45rem);
         font-weight: 700;
         color: var(--white);
         line-height: 1.3;
     }

     .terms-section p {
         font-size: 14.5px;
         color: #2d2c2b;
         margin-bottom: 14px;
         line-height: 1.8;
     }

     .terms-section ul {
         list-style: none;
         padding: 0;
         margin: 0 0 14px;
     }

     .terms-section ul li {
         position: relative;
         padding: 9px 0 9px 24px;
         font-size: 14.5px;
         color: #313130;
         border-bottom: 1px solid rgba(255, 255, 255, 0.04);
         line-height: 1.6;
     }

     .terms-section ul li:last-child {
         border-bottom: none;
     }

     .terms-section ul li::before {
         content: '';
         position: absolute;
         left: 0;
         top: 18px;
         width: 7px;
         height: 7px;
         border-radius: 50%;
         background: var(--gold);
         opacity: 0.7;
     }

     .terms-section ul li strong {
         color: var(--white);
         font-weight: 500;
     }

     .highlight-box {
         background: rgba(201, 168, 76, 0.06);
         border-left: 3px solid var(--gold);
         border-radius: 0 8px 8px 0;
         padding: 16px 20px;
         margin: 18px 0;
     }

     .highlight-box p {
         margin: 0;
         font-size: 14px;
         color: #2b2b2b;
     }

     /* ── FOOTER STRIP ── */
     .terms-footer-strip {
         background: var(--dark-2);
         border-top: 1px solid var(--border);
         padding: 40px 20px;
         text-align: center;
     }

     .terms-footer-strip p {
         font-size: 13.5px;
         color: var(--text-muted);
         margin-bottom: 6px;
     }

     .terms-footer-strip a {
         color: var(--gold);
         text-decoration: none;
     }

     .terms-footer-strip a:hover {
         text-decoration: underline;
     }

     .terms-footer-strip .brand {
         font-family: 'Playfair Display', serif;
         font-size: 18px;
         color: var(--gold-light);
         font-weight: 700;
         margin-bottom: 8px;
         display: block;
     }

     /* ── BACK TO TOP ── */
     .back-top {
         position: fixed;
         bottom: 28px;
         right: 28px;
         width: 44px;
         height: 44px;
         background: var(--gold);
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         opacity: 0;
         pointer-events: none;
         transition: opacity 0.3s;
         z-index: 999;
         text-decoration: none;
     }

     .back-top.show {
         opacity: 1;
         pointer-events: auto;
     }

     .back-top svg {
         width: 18px;
         height: 18px;
         fill: var(--dark);
     }

     /* ── FADE IN ── */
     .fade-in {
         opacity: 0;
         transform: translateY(22px);
         transition: opacity 0.6s ease, transform 0.6s ease;
     }

     .fade-in.visible {
         opacity: 1;
         transform: translateY(0);
     }