 :root {
   --primary-color: #270678;
   --secondary-color: #0c09c3;
   --accent-color: #3498db;
   --text-color: #1e293b;
   --border-color: #e5e7eb;
   --bg-color: #ffffff;
 }

 /* Container */
 .document-container {
   max-width: 900px;
   margin: 2rem auto;
   background: var(--bg-color);
   border-radius: 12px;
   box-shadow: rgba(50, 50, 93, 0.15) 0px 8px 24px, rgba(0, 0, 0, 0.1) 0px 4px 12px;
   overflow: hidden;
 }

 /* Header */
 .document-header {
   text-align: center;
   padding: 3rem 2rem;
   background: linear-gradient(270deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: #fff;
 }

 .document-title {
   font-size: 2.3rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
 }

 .document-subtitle {
   font-size: 1.1rem;
   opacity: 0.9;
 }

 /* Content */
 .document-content {
   padding: 2.5rem;
 }

 /* Sections */
 .policy-section {
   margin-bottom: 3rem;
 }

 .section-header {
   text-align: center;
   margin-bottom: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid var(--border-color);
 }

 .section-title {
   font-size: 2rem;
   font-weight: 600;
   color: var(--primary-color);
 }

 /* Intro */
 .intro-text {
   background-color: #f9fafb;
   border-left: 5px solid var(--primary-color);
   padding: 1.5rem;
   line-height: 1.6;
   border-radius: 8px;
   margin-bottom: 2rem;
   font-size: 1.05rem;
 }

 /* Numbered Sections */
 .numbered-section {
   margin-bottom: 2.5rem;
   padding: 2rem;
   border-radius: 10px;
   background: #ffffff;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .numbered-section:hover {
   transform: translateY(-4px);
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
 }

 .section-number {
   font-size: 1.4rem;
   font-weight: 600;
   color: var(--secondary-color);
   margin-bottom: 1rem;
 }

 /* Highlights */
 .highlight-list {
   background-color: #f8faff;
   border: 1px solid #e0e7ff;
   border-radius: 8px;
   padding: 1.2rem 1.5rem;
 }

 .highlight-list ul {
   padding-left: 1.2rem;
   margin: 0;
 }

 .highlight-list li {
   margin-bottom: 0.6rem;
   color: #334155;
   position: relative;
 }

 .highlight-list li::before {
   content: "✓";
   position: absolute;
   left: -1.2rem;
   color: var(--primary-color);
   font-weight: bold;
 }

 /* Notes */
 .important-note {
   background-color: #f1f5ff;
   border: 1px solid #c7d2fe;
   border-radius: 8px;
   padding: 1rem 1.5rem;
   margin-top: 1.2rem;
 }

 .important-note .note-title {
   font-weight: 600;
   color: var(--primary-color);
   margin-bottom: 0.5rem;
 }

 /* Cookie Types */
 .cookie-type {
   background: #f9fafb;
   border: 1px solid var(--border-color);
   border-radius: 10px;
   padding: 1.2rem;
   margin-bottom: 1rem;
   transition: all 0.3s ease;
 }

 .cookie-type:hover {
   background: #eef2ff;
   border-color: var(--primary-color);
 }

 .cookie-type-title {
   font-weight: 600;
   color: var(--secondary-color);
   margin-bottom: 0.5rem;
 }

 /* Effective Date */
 .effective-date {
   background-color: #fff3cd;
   border: 1px solid #ffeaa7;
   color: #856404;
   padding: 1rem;
   border-radius: 8px;
   text-align: center;
   margin: 2rem 0;
   font-weight: 500;
 }

 /* Third Party Grid */
 .third-party-services {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1rem;
 }

 .service-item {
   background: #f9fafb;
   padding: 1rem;
   border-radius: 8px;
   text-align: center;
   border: 1px solid var(--border-color);
   transition: all 0.3s ease;
 }

 .service-item:hover {
   background: #eef2ff;
   border-color: var(--primary-color);
 }

 .service-name {
   font-weight: 600;
   color: var(--primary-color);
 }

 /* Contact Box */
 .contact-info {
   background: linear-gradient(270deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: #fff;
   padding: 2rem;
   border-radius: 10px;
   margin-top: 2rem;
 }

 .contact-info h5 {
   margin-bottom: 1.5rem;
   font-weight: 600;
 }

 .contact-detail {
   margin-bottom: 1rem;
 }

 .contact-detail strong {
   color: #facc15;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .document-content {
     padding: 1.5rem;
   }

   .document-title {
     font-size: 1.8rem;
   }

   .section-title {
     font-size: 1.5rem;
   }
 }