 :root {
     --primary-color: #007A7A;
     --secondary-color: #004A4A;
     --accent-color: #0D94A1;
     --light-bg: #f8f9fa;
     --white: #ffffff;
     --dark-text: #333;
     --light-text: #666;
     --grey-border: #ddd;
     --success: #28a745;
     --error: #dc3545;
     --warning-bg: #fff3cd;
     --warning-border: #ffeeba;
     --warning-text: #856404;
     --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.1);
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
     line-height: 1.6;
     background-color: var(--white);
     color: var(--dark-text);
     font-size: 16px;
 }

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

 main {
     min-height: 70vh;
 }

 a {
     color: var(--primary-color);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 a:hover {
     color: var(--secondary-color);
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
 }

 h1,
 h2,
 h3,
 h4 {
     color: var(--secondary-color);
     margin-bottom: 0.75rem;
     line-height: 1.3;
 }

 h1 {
     font-size: 2.5rem;
 }

 h2 {
     font-size: 2rem;
 }

 h3 {
     font-size: 1.5rem;
 }

 h4 {
     font-size: 1.2rem;
 }

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


 .mt-4 {
     margin-top: 2rem;
 }

 .mb-4 {
     margin-bottom: 2rem;
 }

 .text-center {
     text-align: center;
 }

 .btn {
     display: inline-block;
     background-color: var(--primary-color);
     color: var(--white);
     padding: 0.75rem 1.5rem;
     border: none;
     border-radius: 5px;
     font-size: 1rem;
     font-weight: bold;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn:hover {
     background-color: var(--secondary-color);
     color: var(--white);
     transform: translateY(-2px);
     box-shadow: var(--shadow-hover);
 }

 .btn-secondary {
     background-color: var(--accent-color);
 }

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

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

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

 .hero .btn-outline {
     color: var(--white);
     border-color: var(--white);
 }

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

 /* --------------------
 * 3. Header & Navigation
 * -------------------- */
 .main-header {
     background-color: var(--white);
     box-shadow: var(--shadow);
     padding: 1rem 0;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .main-header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

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

 .logo:hover {
     color: var(--primary-color);
 }

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

 .main-nav .nav-links {
     display: flex;
     align-items: center;
 }

 .main-nav .nav-links li {
     margin-left: 1.5rem;
 }

 .main-nav .nav-links a {
     color: var(--dark-text);
     font-weight: 500;
     padding: 0.5rem 0;
     position: relative;
 }

 .main-nav .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-color);
     transition: width 0.3s ease;
 }

 .main-nav .nav-links a:hover::after,
 .main-nav .nav-links a.active::after {
     width: 100%;
 }

 .main-nav .nav-links a.active {
     color: var(--primary-color);
     font-weight: 600;
 }

 .main-nav .nav-links .btn {
     padding: 0.5rem 1rem;
     margin-left: 1rem;
 }

 .main-nav .nav-links .btn-secondary {
     background-color: transparent;
     color: var(--primary-color);
     border: 2px solid var(--primary-color);
 }

 .main-nav .nav-links .btn-secondary:hover {
     background-color: var(--primary-color);
     color: var(--white);
 }

 .mobile-nav-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 1.75rem;
     color: var(--secondary-color);
     cursor: pointer;
 }

 /* --------------------
 * 4. Footer
 * -------------------- */
 .main-footer {
     background-color: var(--secondary-color);
     color: #e0e0e0;
     padding: 3rem 0 0;
     margin-top: 3rem;
 }

 .main-footer .container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
 }

 .main-footer .footer-col h3 {
     color: var(--white);
     margin-bottom: 1rem;
 }

 .main-footer .footer-col p {
     color: #e0e0e0;
     margin-bottom: 0.5rem;
     line-height: 1.7;
 }

 .main-footer .footer-col a {
     color: #e0e0e0;
 }

 .main-footer .footer-col a:hover {
     color: var(--white);
     text-decoration: underline;
 }

 .main-footer .footer-col ul li {
     margin-bottom: 0.5rem;
 }

 .footer-bottom {
     border-top: 1px solid #4a6b6b;
     margin-top: 2rem;
     padding: 1.5rem 0;
     text-align: center;
 }

 .footer-bottom .container {
     display: block;
 }

 .footer-bottom p {
     color: #b0c0c0;
     font-size: 0.9rem;
     margin-bottom: 0.5rem;
 }

 .footer-bottom .responsible-notice {
     font-style: italic;
     color: #f0f0f0;
     margin-bottom: 1rem;
     padding: 0 1rem;
 }

 /* --------------------
 * 5. Home Page: Hero
 * -------------------- */
 .hero {
     background-color: var(--secondary-color);
     background-size: cover;
     background-position: center;
     background-blend-mode: multiply;
     color: var(--white);
     padding: 6rem 0;
     text-align: center;
 }

 .hero h1 {
     color: var(--white);
     font-size: 3rem;
     margin-bottom: 1rem;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
 }

 .hero p {
     color: var(--white);
     font-size: 1.25rem;
     max-width: 700px;
     margin: 0 auto 2rem;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
 }

 .hero-buttons .btn {
     margin: 0 0.5rem;
     font-size: 1.1rem;
 }

 /* --------------------
 * 6. Home Page: Sections
 * -------------------- */
 .games-section,
 .features-section,
 .how-it-works-section,
 .testimonials-section {
     padding: 4rem 0;
 }

 .how-it-works-section,
 .features-section {
     background-color: var(--light-bg);
 }

 .games-section h2,
 .features-section h2,
 .how-it-works-section h2,
 .testimonials-section h2,
 .cta-section h2 {
     text-align: center;
     margin-bottom: 2.5rem;
 }


 .games-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
 }

 .game-card {
     background-color: var(--white);
     border: 1px solid var(--grey-border);
     border-radius: 8px;
     box-shadow: var(--shadow);
     padding: 2rem;
     text-align: center;
     transition: all 0.3s ease;
 }

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

 .game-card .game-logo {
     max-height: 80px;
     width: auto;
     margin-bottom: 1rem;
 }

 .game-card h3 {
     margin-bottom: 0.5rem;
 }

 .game-card p {
     font-size: 0.95rem;
     min-height: 80px;
 }

 .game-card .btn {
     margin-top: 1rem;
 }


 .features-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
 }

 .feature-card {
     text-align: center;
     padding: 1.5rem;
 }

 .feature-card i {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
 }

 .feature-card p {
     font-size: 0.95rem;
 }


 .steps-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
 }

 .step-card {
     background-color: var(--white);
     border: 1px solid var(--grey-border);
     border-radius: 8px;
     padding: 2rem;
     text-align: center;
     box-shadow: var(--shadow);
 }

 .step-card i {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
 }


 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
 }

 .testimonial-card {
     background-color: var(--light-bg);
     border-left: 5px solid var(--primary-color);
     padding: 1.5rem;
     border-radius: 0 8px 8px 0;
 }

 .testimonial-card p {
     font-style: italic;
     margin-bottom: 1rem;
     color: var(--dark-text);
 }

 .testimonial-card footer {
     font-weight: 600;
     color: var(--secondary-color);
 }


 .cta-section {
     background-color: var(--primary-color);
     color: var(--white);
     padding: 4rem 0;
     text-align: center;
 }

 .cta-section h2 {
     color: var(--white);
 }

 .cta-section p {
     color: var(--white);
     font-size: 1.1rem;
 }

 .cta-section .btn {
     background-color: var(--white);
     color: var(--primary-color);
     font-size: 1.1rem;
 }

 .cta-section .btn:hover {
     background-color: var(--light-bg);
     color: var(--secondary-color);
 }


 .page-header {
     background-color: var(--light-bg);
     padding: 2rem 0;
     border-bottom: 1px solid var(--grey-border);
 }

 .page-header h1 {
     margin-bottom: 0;
     text-align: center;
 }

 .content-section {
     padding: 3rem 0;
 }

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

 .values-list {
     list-style-type: none;
 }

 .values-list li {
     margin-bottom: 1rem;
     display: flex;
     align-items: flex-start;
 }

 .values-list i {
     color: var(--primary-color);
     margin-right: 10px;
     font-size: 1.2rem;
     margin-top: 4px;
 }


 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 2rem;
 }

 .contact-info .info-list {
     list-style: none;
     margin-top: 1.5rem;
 }

 .contact-info .info-list li {
     display: flex;
     align-items: flex-start;
     margin-bottom: 1rem;
 }

 .contact-info .info-list i {
     font-size: 1.2rem;
     color: var(--primary-color);
     margin-right: 1rem;
     margin-top: 4px;
 }

 .contact-info .info-list span {
     font-size: 1rem;
     color: var(--light-text);
 }

 .contact-info .info-list a {
     color: var(--primary-color);
     font-weight: 500;
 }

 .support-notes {
     margin-top: 2rem;
     padding: 1rem;
     background-color: var(--light-bg);
     border-radius: 5px;
     font-size: 0.9rem;
 }

 .support-notes p {
     font-size: 0.9rem;
     margin-bottom: 0.5rem;
 }

 .form-section {
     padding: 3rem 0;
     background-color: var(--light-bg);
 }

 .form-container {
     max-width: 500px;
     margin: 0 auto;
     background-color: var(--white);
     padding: 2rem;
     border-radius: 8px;
     box-shadow: var(--shadow);
 }

 .form-container h1 {
     text-align: center;
     margin-bottom: 0.5rem;
 }

 .form-container h1 i {
     margin-right: 0.5rem;
 }

 .form-container>p {
     text-align: center;
     margin-bottom: 2rem;
 }

 .form-group {
     margin-bottom: 1.25rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
 }

 .form-group input[type="text"],
 .form-group input[type="email"],
 .form-group input[type="password"],
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 0.75rem;
     border: 1px solid var(--grey-border);
     border-radius: 5px;
     font-size: 1rem;
     font-family: inherit;
 }

 .form-group textarea {
     resize: vertical;
 }

 .form-group select {
     appearance: none;
     background: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') no-repeat right 0.75rem center;
     background-size: 1.5rem;
 }

 .form-group-inline {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.25rem;
 }

 .form-group-checkbox {
     display: flex;
     align-items: center;
     margin-bottom: 1.25rem;
     font-size: 0.9rem;
 }

 .form-group-checkbox input[type="checkbox"] {
     margin-right: 0.5rem;
     height: 1.1rem;
     width: 1.1rem;
 }

 .form-group-checkbox label {
     margin-bottom: 0;
     font-weight: 500;
     color: var(--light-text);
 }

 .form-link {
     font-size: 0.9rem;
     font-weight: 500;
 }

 .form-container button[type="submit"] {
     width: 100%;
     padding: 0.8rem;
     font-size: 1.1rem;
     margin-top: 1rem;
 }

 .form-switch {
     text-align: center;
     margin-top: 1.5rem;
     font-size: 0.95rem;
 }


 .form-group input.invalid,
 .form-group select.invalid,
 .form-group textarea.invalid {
     border-color: var(--error);
 }

 .error-message {
     color: var(--error);
     font-size: 0.85rem;
     margin-top: 0.25rem;
     display: none;
 }

 .form-group input.invalid+.error-message,
 .form-group select.invalid+.error-message,
 .form-group textarea.invalid+.error-message,
 .form-group-checkbox input.invalid+label+.error-message {
     display: block;
 }

 .form-feedback {
     padding: 1rem;
     border-radius: 5px;
     margin-bottom: 1.5rem;
     font-weight: 500;
     display: none;
 }

 .form-feedback.success {
     background-color: #d4edda;
     border-color: #c3e6cb;
     color: #155724;
     display: block;
 }

 .form-feedback.error {
     background-color: #f8d7da;
     border-color: #f5c6cb;
     color: #721c24;
     display: block;
 }

 .note {
     background-color: var(--warning-bg);
     border: 1px solid var(--warning-border);
     color: var(--warning-text);
     padding: 1rem 1.5rem;
     border-radius: 5px;
     margin-bottom: 2rem;
     display: flex;
     align-items: center;
 }

 .note i {
     font-size: 1.2rem;
     margin-right: 0.75rem;
 }


 .game-tabs {
     display: flex;
     border-bottom: 2px solid var(--grey-border);
 }

 .game-tab-button {
     flex: 1;
     padding: 1rem;
     font-size: 1.1rem;
     font-weight: 600;
     background: var(--light-bg);
     border: none;
     border-bottom: 2px solid transparent;
     cursor: pointer;
     color: var(--light-text);
     transition: all 0.3s ease;
 }

 .game-tab-button:hover {
     background: #e9ecef;
 }

 .game-tab-button.active {
     color: var(--primary-color);
     background: var(--white);
     border-color: var(--primary-color);
     border-bottom-color: var(--white);
     margin-bottom: -2px;
     border-radius: 5px 5px 0 0;
 }

 .game-panel {
     display: none;
     padding: 2rem;
     background-color: var(--white);
     border: 1px solid var(--grey-border);
     border-top: none;
     border-radius: 0 0 8px 8px;
 }

 .game-panel.active {
     display: block;
 }


 .ticket-builder {
     margin-top: 2rem;
     max-width: 600px;
 }

 .number-grid {
     display: grid;
     grid-template-columns: repeat(7, 1fr);
     gap: 8px;
     margin-bottom: 1.5rem;
 }

 .number-ball {
     width: 45px;
     height: 45px;
     display: flex;
     justify-content: center;
     align-items: center;
     border: 1px solid var(--grey-border);
     border-radius: 50%;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.2s ease;
     user-select: none;
 }

 .number-ball:hover {
     background-color: var(--light-bg);
     border-color: var(--primary-color);
 }

 .number-ball.selected {
     background-color: var(--primary-color);
     color: var(--white);
     border-color: var(--primary-color);
 }

 .number-ball.disabled {
     background-color: var(--light-bg);
     color: #aaa;
     cursor: not-allowed;
 }

 .ticket-controls {
     margin-bottom: 1.5rem;
 }

 .ticket-controls .btn {
     margin-right: 0.5rem;
 }

 .ticket-summary {
     margin-bottom: 1.5rem;
 }

 .selected-numbers-display {
     display: flex;
     gap: 10px;
     margin-top: 0.5rem;
     flex-wrap: wrap;
 }

 .selected-numbers-display span {
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: var(--light-bg);
     border: 1px dashed var(--grey-border);
     border-radius: 50%;
     font-weight: 600;
     color: var(--light-text);
 }

 .selected-numbers-display span.filled {
     background-color: var(--primary-color);
     color: var(--white);
     border-style: solid;
     border-color: var(--primary-color);
 }

 .ticket-cart {
     border-top: 1px solid var(--grey-border);
     padding-top: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1.5rem;
 }

 .ticket-cart .form-group {
     margin-bottom: 0;
 }

 .ticket-cart .ticket-qty {
     width: 80px;
     padding: 0.5rem;
 }

 .total-price {
     font-size: 1.5rem;
     color: var(--secondary-color);
     margin-bottom: 0;
 }

 .add-to-cart-btn {
     font-size: 1.1rem;
 }

 .modal {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.5);
     align-items: center;
     justify-content: center;
 }

 .modal.show {
     display: flex;
 }

 .modal-content {
     background-color: var(--white);
     margin: auto;
     padding: 2rem;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     width: 90%;
     max-width: 500px;
     position: relative;
     animation: fadeInModal 0.3s ease-out;
 }

 @keyframes fadeInModal {
     from {
         opacity: 0;
         transform: scale(0.9);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .modal-close {
     color: #aaa;
     position: absolute;
     top: 10px;
     right: 20px;
     font-size: 2rem;
     font-weight: bold;
     cursor: pointer;
 }

 .modal-close:hover,
 .modal-close:focus {
     color: var(--dark-text);
 }

 .modal-content h3 {
     color: var(--success);
     margin-bottom: 1rem;
 }

 .modal-content h3 i {
     margin-right: 0.5rem;
 }

 .modal-content p {
     margin-bottom: 1rem;
 }

 .modal-content .btn {
     display: block;
     width: 100%;
     margin-top: 1.5rem;
 }


 .grand-number-grid {

     grid-template-columns: repeat(7, 1fr);
     max-width: 400px;
 }

 .grand-number-display {

     max-width: 50px;
 }

 .ticket-builder h3 {
     margin-top: 1.5rem;
 }

 .ticket-builder h3:first-of-type {
     margin-top: 0;
 }




 @media (max-width: 992px) {
     h1 {
         font-size: 2.2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .games-grid,
     .testimonials-grid {
         grid-template-columns: 1fr 1fr;
     }

     .features-grid,
     .steps-grid {
         grid-template-columns: 1fr 1fr;
     }

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


 @media (max-width: 768px) {
     .main-nav {
         position: fixed;
         top: 75px;
         left: 0;
         width: 100%;
         background-color: var(--white);
         box-shadow: var(--shadow);
         transform: translateY(-120%);
         transition: transform 0.3s ease-out;
         opacity: 0;
     }

     .main-nav.active {
         transform: translateY(0);
         opacity: 1;
     }

     .main-nav .nav-links {
         flex-direction: column;
         align-items: stretch;
         padding: 1rem 0;
     }

     .main-nav .nav-links li {
         margin: 0;
     }

     .main-nav .nav-links a {
         display: block;
         padding: 1rem 1.5rem;
         border-bottom: 1px solid var(--light-bg);
     }

     .main-nav .nav-links a::after {
         display: none;
     }

     .main-nav .nav-links a.btn {
         margin: 0.5rem 1.5rem;
         text-align: center;
     }

     .main-nav .nav-links .btn-secondary {
         margin: 0.5rem 1.5rem;
         text-align: center;
     }

     .mobile-nav-toggle {
         display: block;
     }

     .hero {
         padding: 4rem 0;
     }

     .hero h1 {
         font-size: 2rem;
     }

     .hero p {
         font-size: 1rem;
     }

     .games-grid,
     .features-grid,
     .steps-grid,
     .testimonials-grid,
     .contact-grid {
         grid-template-columns: 1fr;
     }

     .contact-grid {
         gap: 3rem;
     }

     .main-footer .container {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .main-footer .footer-col ul {
         padding: 0;
     }

     .ticket-cart {
         flex-direction: column;
         align-items: stretch;
     }

     .ticket-cart .total-price {
         text-align: center;
     }

     .number-grid {
         grid-template-columns: repeat(6, 1fr);
         gap: 5px;
     }

     .number-ball {
         width: 40px;
         height: 40px;
         font-size: 0.9rem;
     }
 }

 @media (max-width: 480px) {
     .number-grid {
         grid-template-columns: repeat(5, 1fr);
     }

     .grand-number-grid {
         grid-template-columns: repeat(7, 1fr);
     }
 }

 .footer-imgs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
 }

 .footer-imgs img {
     padding: 12px;
     margin: 12px;
     height: 55px;
     background: white;
     border-radius: 10px;
 }

 .age-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.65);
     display: none;

     align-items: center;
     justify-content: center;
     z-index: 9999;
 }

 .age-overlay__box {
     background: #ffffff;
     border-radius: 12px;
     padding: 24px 28px;
     max-width: 420px;
     width: 90%;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
     border-top: 4px solid #007A7A;
 }

 .age-overlay__box h2 {
     margin-bottom: 12px;
     color: #007A7A;
     font-size: 1.5rem;
 }

 .age-overlay__box p {
     margin-bottom: 16px;
     color: #333333;
     font-size: 0.95rem;
 }

 .age-overlay__actions {
     display: flex;
     gap: 12px;
     justify-content: center;
     margin-bottom: 8px;
     flex-wrap: wrap;
 }

 .age-overlay__note {
     font-size: 0.8rem;
     color: #666666;
 }


 .cookie-banner {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     background: #ffffff;
     border-top: 3px solid #007A7A;
     box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
     padding: 16px 20px;
     z-index: 9998;
     display: none;

     font-size: 0.95rem;
 }

 .cookie-banner__content {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     align-items: center;
     justify-content: space-between;
 }

 .cookie-banner__text h3 {
     margin: 0 0 6px;
     color: #007A7A;
     font-size: 1.1rem;
 }

 .cookie-banner__text p {
     margin: 0;
     color: #333333;
     max-width: 600px;
 }

 .cookie-banner__buttons {
     display: flex;
     gap: 8px;
     flex-shrink: 0;
 }


 .cookie-settings {
     margin-top: 12px;
     padding-top: 10px;
     border-top: 1px solid #e0e0e0;
     display: none;
 }

 .cookie-settings h4 {
     margin: 0 0 6px;
     color: #007A7A;
     font-size: 1rem;
 }

 .cookie-settings p {
     margin: 0 0 10px;
     color: #555555;
 }

 .cookie-settings__item {
     margin-bottom: 6px;
 }

 .cookie-settings__item label {
     display: flex;
     align-items: flex-start;
     gap: 8px;
     cursor: pointer;
     font-size: 0.9rem;
 }

 .cookie-settings__item input[type="checkbox"] {
     margin-top: 2px;
 }

 .btn-primary,
 .btn-secondary {
     border-radius: 50px;
     padding: 8px 16px;
     border: none;
     cursor: pointer;
     font-size: 0.9rem;
     font-weight: 600;
     transition: all 0.2s ease;
 }

 .btn-primary {
     background: #007A7A;
     color: #ffffff;
 }

 .btn-primary:hover {
     background: #005e5e;
 }

 .btn-secondary {
     background: #ffffff;
     color: #007A7A;
     border: 1px solid #007A7A;
 }



 .btn-sm {
     padding: 6px 12px;
     font-size: 0.85rem;
 }

 @media (max-width: 600px) {
     .cookie-banner__content {
         flex-direction: column;
         align-items: flex-start;
     }

     .cookie-banner__buttons {
         width: 100%;
         justify-content: flex-start;
     }
 }