 :root {
     --primary-color: #5CB8B3;
     --primary-dark: #4a9691;
     --primary-light: #7dd4cf;
     --light-bg: #f8fafc;
     --border-color: #e2e8f0;
     --text-primary: #1a202c;
     --text-secondary: #4a5568;
     --success-bg: #f0fdf4;
     --warning-bg: #fef3c7;
     --danger-bg: #fee2e2;
 }

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

 body {
     font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
     color: var(--text-primary);
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     line-height: 1.7;
     min-height: 100vh;
 }

 .policy-container {
     max-width: 1000px;
     margin: 2.5rem auto;
     background: white;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     animation: fadeIn 0.5s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .policy-header {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
     color: white;
     padding: 4rem 3rem;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .policy-header::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 400px;
     height: 400px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     animation: float 6s ease-in-out infinite;
 }

 .policy-header::after {
     content: '';
     position: absolute;
     bottom: -30%;
     left: -5%;
     width: 250px;
     height: 250px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 50%;
     animation: float 8s ease-in-out infinite reverse;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .policy-title {
     font-size: 2.75rem;
     font-weight: 800;
     margin-bottom: 0.75rem;
     position: relative;
     z-index: 1;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .policy-subtitle {
     font-size: 1.25rem;
     opacity: 0.95;
     position: relative;
     z-index: 1;
     font-weight: 400;
 }

 .policy-content {
     padding: 3.5rem;
 }

 .policy-section {
     margin-bottom: 3rem;
     padding-bottom: 3rem;
     border-bottom: 2px solid var(--border-color);
     animation: slideIn 0.5s ease-out;
 }

 @keyframes slideIn {
     from {
         opacity: 0;
         transform: translateX(-20px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .policy-section:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .section-number {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 44px;
     height: 44px;
     background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
     color: white;
     border-radius: 50%;
     font-weight: 700;
     margin-right: 15px;
     font-size: 1.2rem;
     box-shadow: 0 6px 15px rgba(92, 184, 179, 0.3);
     transition: all 0.3s ease;
 }

 .section-title {
     font-size: 1.65rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .section-title:hover {
     color: var(--primary-color);
     transform: translateX(5px);
 }

 .section-title:hover .section-number {
     transform: rotate(360deg);
     box-shadow: 0 8px 20px rgba(92, 184, 179, 0.4);
 }

 .section-content {
     padding-left: 40px;
     color: var(--text-secondary);
 }

 .subsection {
     margin-bottom: 1.5rem;
     transition: all 0.3s ease;
 }

 .subsection:hover {
     transform: translateX(5px);
 }

 .subsection-title {
     font-weight: 600;
     color: var(--primary-dark);
     margin-bottom: 0.75rem;
     font-size: 1.05rem;
 }

 .subsection p {
     line-height: 1.8;
 }

 .bullet-list {
     list-style-type: none;
     padding-left: 0;
     margin: 1rem 0;
 }

 .bullet-list li {
     position: relative;
     padding-left: 30px;
     margin-bottom: 0.75rem;
     color: var(--text-secondary);
     transition: all 0.2s ease;
 }

 .bullet-list li:hover {
     color: var(--text-primary);
     transform: translateX(5px);
 }

 .bullet-list li:before {
     content: "▸";
     color: var(--primary-color);
     font-size: 1.3rem;
     position: absolute;
     left: 0;
     top: -2px;
     font-weight: bold;
 }

 .highlight-box {
     background: linear-gradient(135deg, rgba(92, 184, 179, 0.08) 0%, rgba(92, 184, 179, 0.03) 100%);
     border-left: 5px solid var(--primary-color);
     padding: 1.5rem 1.75rem;
     border-radius: 10px;
     margin: 1.75rem 0;
     box-shadow: 0 4px 15px rgba(92, 184, 179, 0.1);
     transition: all 0.3s ease;
 }

 .highlight-box:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(92, 184, 179, 0.15);
 }

 .highlight-box strong {
     color: var(--primary-dark);
     font-size: 1.05rem;
 }

 .restrictions-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 1.25rem;
     margin-top: 1.5rem;
 }

 .restriction-card {
     background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
     border: 2px solid #fee2e2;
     border-radius: 12px;
     padding: 1.25rem;
     display: flex;
     align-items: flex-start;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .restriction-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
     border-color: #fca5a5;
 }

 .restriction-icon {
     font-size: 1.5rem;
     margin-right: 1rem;
     flex-shrink: 0;
     filter: grayscale(0);
 }

 .restriction-card div:last-child {
     font-weight: 500;
     color: #991b1b;
     line-height: 1.5;
 }

 .franchise-table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 0;
     margin: 1.5rem 0;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 }

 .franchise-table th,
 .franchise-table td {
     padding: 1.25rem 1.5rem;
     text-align: left;
     border-bottom: 1px solid var(--border-color);
 }

 .franchise-table thead tr {
     background: linear-gradient(135deg, rgba(92, 184, 179, 0.12) 0%, rgba(92, 184, 179, 0.08) 100%);
 }

 .franchise-table th {
     font-weight: 700;
     color: var(--primary-dark);
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 0.5px;
 }

 .franchise-table tbody tr {
     transition: all 0.3s ease;
     background: white;
 }

 .franchise-table tbody tr:hover {
     background: linear-gradient(90deg, rgba(92, 184, 179, 0.05) 0%, transparent 100%);
     transform: scale(1.01);
 }

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

 .franchise-table td strong {
     color: var(--primary-dark);
     font-size: 1.1rem;
     font-weight: 700;
 }

 .footer-actions {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin-top: 3.5rem;
     padding-top: 2.5rem;
     border-top: 2px solid var(--border-color);
 }

 .btn {
     padding: 1rem 2rem;
     border-radius: 12px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     border: none;
     font-size: 1rem;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
     color: white;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(92, 184, 179, 0.4);
 }

 .btn-secondary {
     background: white;
     color: var(--primary-dark);
     border: 2px solid var(--primary-color);
 }

 .btn-secondary:hover {
     background: var(--primary-color);
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(92, 184, 179, 0.3);
 }

 .scroll-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
     color: white;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: none;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     box-shadow: 0 4px 15px rgba(92, 184, 179, 0.4);
     transition: all 0.3s ease;
     z-index: 1000;
 }

 .scroll-top:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 20px rgba(92, 184, 179, 0.5);
 }

 .scroll-top.visible {
     display: flex;
 }

 footer {
     text-align: center;
     color: #7f8c8d;
     padding: 30px;
     font-size: 0.9em;
 }

 @media (max-width: 768px) {
     .policy-container {
         margin: 0;
         border-radius: 0;
     }

     .policy-header {
         padding: 3rem 1.5rem;
     }

     .policy-title {
         font-size: 2rem;
     }

     .policy-subtitle {
         font-size: 1rem;
     }

     .policy-content {
         padding: 2rem 1.5rem;
     }

     .section-content {
         padding-left: 0;
     }

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

     .section-number {
         width: 38px;
         height: 38px;
         font-size: 1rem;
     }

     .restrictions-grid {
         grid-template-columns: 1fr;
     }

     .footer-actions {
         flex-direction: column;
         gap: 1rem;
     }

     .btn {
         width: 100%;
         justify-content: center;
     }

     .scroll-top {
         bottom: 20px;
         right: 20px;
         width: 45px;
         height: 45px;
     }
 }

 @media print {
     body {
         background: white;
     }

     .policy-container {
         box-shadow: none;
         margin: 0;
     }

     .policy-header {
         box-shadow: none;
     }

     .footer-actions,
     .scroll-top {
         display: none !important;
     }

     .policy-section {
         page-break-inside: avoid;
     }

     .section-title:hover {
         transform: none;
     }
 }