 :root {
     --bg-light: #f8fafc;
     --bg-white: #ffffff;
     --text-main: #1e293b;
     --text-muted: #64748b;
     --primary: #0f172a;
     --accent: #2563eb;
     --accent-hover: #1d4ed8;
     --border: #e2e8f0;
     --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
     --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
     --radius: 12px;
     --transition: all 0.3s ease;
 }


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

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-main);
     background-color: var(--bg-light);
     line-height: 1.6;
     scroll-behavior: smooth;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     height: auto;
     border-radius: var(--radius);
 }


 h1,
 h2,
 h3 {
     color: var(--primary);
     font-weight: 700;
     margin-bottom: 1rem;
 }

 h1 {
     font-size: 2.5rem;
     line-height: 1.2;
 }

 h2 {
     font-size: 2rem;
     text-align: center;
     margin-bottom: 2rem;
 }

 h3 {
     font-size: 1.25rem;
 }

 p {
     color: var(--text-muted);
     margin-bottom: 1rem;
 }

 .section-subtitle {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 3rem auto;
     font-size: 1.1rem;
 }


 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 section {
     padding: 80px 0;
 }

 .grid-2 {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
 }

 .grid-3 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .grid-4 {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }


 .btn {
     display: inline-block;
     padding: 12px 24px;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
     text-align: center;
 }

 .btn-primary {
     background: var(--accent);
     color: white;
     border: none;
 }

 .btn-primary:hover {
     background: var(--accent-hover);
     transform: translateY(-2px);
 }

 .btn-outline {
     background: transparent;
     color: var(--primary);
     border: 2px solid var(--primary);
 }

 .btn-outline:hover {
     background: var(--primary);
     color: white;
 }

 .card {
     background: var(--bg-white);
     padding: 30px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-soft);
     transition: var(--transition);
     border: 1px solid var(--border);
 }

 .card:hover {
     box-shadow: var(--shadow-hover);
     transform: translateY(-5px);
 }

 .icon-box {
     font-size: 2rem;
     color: var(--accent);
     margin-bottom: 15px;
 }

 .badge {
     display: inline-block;
     background: #e0f2fe;
     color: #0284c7;
     padding: 4px 10px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     margin-bottom: 10px;
 }


 header {
     background: var(--bg-white);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 80px;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary);
 }

 .logo span {
     color: var(--accent);
 }

 .nav-links {
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .nav-links a:hover {
     color: var(--accent);
 }

 .burger {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--primary);
 }


 .hero {
     padding-top: 140px;
     padding-bottom: 100px;
     background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(226, 232, 240, 0.95) 100%),
         url('../img/hero.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     text-align: center;
 }

 .hero-badges {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 30px;
 }

 .hero-badge {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.9rem;
     color: var(--text-main);
     font-weight: 600;
 }

 .hero-disclaimer {
     margin-top: 40px;
     font-size: 0.8rem;
     color: var(--text-muted);
 }


 .bookie-card {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .bookie-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .bookie-logo {
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-muted);
 }

 .bookie-logo img {
     height: 100%;
 }

 .bookie-rating {
     color: #f59e0b;
     font-weight: bold;
 }

 .bookie-info {
     flex-grow: 1;
 }

 .bookie-info ul {
     margin-bottom: 15px;
 }

 .bookie-info li {
     margin-bottom: 8px;
     font-size: 0.9rem;
     display: flex;
     align-items: flex-start;
     gap: 8px;
 }

 .bookie-info li i {
     color: var(--accent);
     margin-top: 4px;
 }

 .disclaimer-small {
     font-size: 0.75rem;
     color: #94a3b8;
     text-align: center;
     margin-top: 10px;
 }


 .guide-step {
     display: flex;
     gap: 20px;
     margin-bottom: 40px;
 }

 .guide-icon {
     flex-shrink: 0;
     width: 50px;
     height: 50px;
     background: var(--accent);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
 }

 .guide-content p {
     margin-bottom: 10px;
 }


 .faq-item {
     background: var(--bg-white);
     border: 1px solid var(--border);
     border-radius: 8px;
     margin-bottom: 10px;
     overflow: hidden;
 }

 .faq-question {
     padding: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     font-weight: 600;
 }

 .faq-answer {
     padding: 0 20px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
 }

 .faq-answer p {
     padding-bottom: 20px;
 }

 .faq-item.active .faq-answer {
     max-height: 200px;
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }


 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid var(--border);
     border-radius: 8px;
     font-family: inherit;
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }



 .legal-disclaimer {
     margin-top: 20px;
     padding: 15px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
     font-size: 0.8rem;
 }


 .cookie-bar {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: var(--bg-white);
     border-top: 1px solid var(--border);
     padding: 15px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 2000;
     box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
 }

 .cookie-bar p {
     margin: 0;
     font-size: 0.9rem;
 }


 @media (max-width: 992px) {

     .grid-3,
     .grid-4 {
         grid-template-columns: repeat(2, 1fr);
     }

     h1 {
         font-size: 2rem;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         position: absolute;
         top: 80px;
         left: -100%;
         flex-direction: column;
         width: 100%;
         background: var(--bg-white);
         padding: 20px;
         box-shadow: var(--shadow-soft);
         transition: var(--transition);
         gap: 15px;
     }

     .nav-links.active {
         left: 0;
     }

     .burger {
         display: block;
     }

     .grid-2,
     .grid-3,
     .grid-4 {
         grid-template-columns: 1fr;
     }

     .hero-badges {
         flex-direction: column;
         align-items: center;
     }
 }

 .sr-footer {
     background: #0b1017;
     color: #f4f4f4;
     font-size: 14px;
     line-height: 1.6;
     padding: 40px 20px 24px;
 }

 .sr-footer a {
     color: #f3cf55;
     text-decoration: none;
 }

 .sr-footer a:hover {
     text-decoration: underline;
 }

 .sr-footer-inner {
     max-width: 1200px;
     margin: 0 auto;
 }

 .sr-footer-top {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 24px;
     margin-bottom: 32px;
 }

 .sr-footer-brand {
     max-width: 520px;
 }

 .sr-footer-logo {
     display: inline-block;
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .sr-footer-brand-text {
     margin: 0;
     opacity: 0.9;
 }

 .sr-footer-badges {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 12px;
 }

 .sr-badge {
     min-height: 52px;
     border-radius: 999px;
     border: 1px solid rgba(243, 207, 85, 0.4);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(5, 8, 15, 0.7);
 }

 .sr-badge img {
     height: 60px;
     display: block;
 }

 .sr-badge-18 {
     background: #c0392b;
     border-color: #c0392b;
     color: #ffffff;
     font-weight: 700;
     font-size: 18px;
 }



 .sr-footer-columns {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 24px;
     padding-top: 12px;
     padding-bottom: 24px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .sr-footer-col h4 {
     font-size: 15px;
     font-weight: 600;
     margin-bottom: 8px;
 }

 .sr-footer-col p {
     margin: 0 0 8px;
     opacity: 0.9;
 }

 .sr-footer-nav {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .sr-footer-nav li {
     margin-bottom: 6px;
 }

 .sr-footer-nav a {
     font-size: 14px;
 }



 .sr-footer-bottom {
     margin-top: 18px;
 }

 .sr-footer-disclaimer {
     margin: 0 0 10px;
     font-size: 13px;
     opacity: 0.9;
 }

 .sr-footer-copy {
     margin: 0 0 6px;
     font-size: 13px;
     opacity: 0.85;
 }

 .sr-footer-en {
     margin: 0;
     font-size: 12px;
     opacity: 0.75;
 }



 @media (max-width: 992px) {
     .sr-footer-columns {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 640px) {
     .sr-footer-top {
         flex-direction: column;
     }

     .sr-footer-columns {
         grid-template-columns: 1fr;
     }

     .sr-footer {
         padding: 28px 16px 20px;
     }
 }

 .page-header {
     padding-top: 140px;
     padding-bottom: 60px;
     background: linear-gradient(135deg, var(--bg-white) 0%, #e2e8f0 100%);
     text-align: center;
 }

 .page-header h1 {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .page-header p {
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto;
 }

 .text-container {
     max-width: 800px;
     margin: 0 auto;
     padding: 40px 20px 80px;
     background: var(--bg-white);
     border-radius: var(--radius);
     box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
     margin-bottom: 60px;
 }

 .content-body h2 {
     font-size: 1.5rem;
     margin-top: 2rem;
     margin-bottom: 1rem;
     padding-bottom: 0.5rem;
     border-bottom: 1px solid var(--border);
 }

 .content-body h3 {
     font-size: 1.2rem;
     margin-top: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .content-body p {
     margin-bottom: 1.2rem;
     line-height: 1.7;
 }

 .content-body ul {
     margin-bottom: 1.5rem;
     padding-left: 20px;
 }

 .content-body li {
     margin-bottom: 0.5rem;
     color: var(--text-muted);
     position: relative;
     list-style-type: disc;
 }

 .last-updated {
     font-size: 0.9rem;
     color: var(--text-muted);
     font-style: italic;
     margin-bottom: 30px;
     display: block;
 }

 .important-note {
     background-color: #fef2f2;
     border-left: 4px solid #ef4444;
     padding: 15px;
     margin-bottom: 20px;
     border-radius: 4px;
 }

 .important-note p {
     color: #991b1b;
     margin-bottom: 0;
     font-weight: 600;
 }

 .legal-disclaimer {
     margin-top: 20px;
     padding: 15px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
     font-size: 0.8rem;
 }

 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 15px;
     margin-bottom: 25px;
     font-size: 0.9rem;
 }

 .cookie-table th,
 .cookie-table td {
     border: 1px solid var(--border);
     padding: 12px;
     text-align: left;
 }

 .cookie-table th {
     background-color: var(--bg-light);
     color: var(--primary);
     font-weight: 600;
 }


 @media (max-width: 768px) {

     .cookie-table th,
     .cookie-table td {
         font-size: 0.8rem;
         padding: 8px;
     }
 }

 .help-box {
     background-color: #f0fdf4;
     border: 1px solid #bbf7d0;
     padding: 25px;
     border-radius: 8px;
     margin-top: 30px;
 }

 .help-box h3 {
     color: #166534;
     margin-top: 0;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .help-box p {
     color: #15803d;
     margin-bottom: 10px;
     font-weight: 600;
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.8);
     backdrop-filter: blur(5px);
     z-index: 9998;
     display: none;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .modal-overlay.active {
     display: block;
     opacity: 1;
 }

 .modal {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0.95);
     background: var(--bg-white);
     width: 90%;
     max-width: 450px;
     padding: 30px;
     border-radius: var(--radius);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     z-index: 9999;
     display: none;
     opacity: 0;
     transition: all 0.3s ease;
 }

 .modal.active {
     display: block;
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
 }

 .modal-icon {
     width: 60px;
     height: 60px;
     background: #eff6ff;
     color: var(--accent);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     margin: 0 auto 20px auto;
 }


 .cookie-banner {
     position: fixed;
     bottom: -100%;
     left: 0;
     width: 100%;
     background: var(--bg-white);
     border-top: 1px solid var(--border);
     box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.1);
     z-index: 9997;
     transition: bottom 0.4s ease;
     padding: 20px;
 }

 .cookie-banner.active {
     bottom: 0;
 }

 .cookie-banner-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 @media(min-width: 992px) {
     .cookie-banner-content {
         flex-direction: row;
         justify-content: space-between;
         align-items: center;
     }
 }

 .cookie-banner-buttons {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }


 .cookie-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     border-bottom: 1px solid var(--border);
 }

 .cookie-option:last-of-type {
     border-bottom: none;
 }

 .cookie-option-info h4 {
     margin: 0 0 5px 0;
     font-size: 1rem;
     color: var(--primary);
 }

 .cookie-option-info p {
     margin: 0;
     font-size: 0.85rem;
     color: var(--text-muted);
 }

 .toggle-switch {
     position: relative;
     display: inline-block;
     width: 50px;
     height: 26px;
     flex-shrink: 0;
     margin-left: 15px;
 }

 .toggle-switch input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #cbd5e1;
     transition: .4s;
     border-radius: 34px;
 }

 .slider:before {
     position: absolute;
     content: "";
     height: 18px;
     width: 18px;
     left: 4px;
     bottom: 4px;
     background-color: white;
     transition: .4s;
     border-radius: 50%;
 }

 input:checked+.slider {
     background-color: var(--accent);
 }

 input:disabled+.slider {
     opacity: 0.6;
     cursor: not-allowed;
 }

 input:checked+.slider:before {
     transform: translateX(24px);
 }