/* Grundlegende Styles */
:root {
    --primary-color: #ffcc00;
    --secondary-color: #333;
    --accent-color: #222;
    --text-color: #333;
    --light-text: #fff;
    --background-color: #fff;
    --section-padding: 3rem 2rem;
}

html {
    /* Verhindert das Zoomen auf Touch-Geräten */
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

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

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    /* Verhindert das Zoomen durch Benutzeraktionen */
    zoom: 100%;
    -moz-transform: scale(1);
    -moz-transform-origin: 0 0;
    -o-transform: scale(1);
    -o-transform-origin: 0 0;
    -webkit-transform: scale(1);
    -webkit-transform-origin: 0 0;
}

/* Verhindert das Zoomen bei Fokus auf Eingabefeldern auf mobilen Geräten */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    font-size: 16px; /* Mindestgröße, um automatisches Zoomen auf iOS zu verhindern */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 0.8rem 1.5rem;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

/* Header */
header {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container h1 {
    color: var(--primary-color);
    font-size: 2rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 1.5rem;
    position: relative;
}

nav ul li a {
    padding: 0.5rem 0;
    position: relative;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--light-text);
    padding: 0.7rem 1rem;
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--accent-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/taxi-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.phone, .hours {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    border-radius: 5px;
    width: 150px;
}

.phone h3, .hours h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.phone p {
    font-size: 1.5rem;
    font-weight: bold;
}

.hero .btn-primary {
    font-size: 1.2rem;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: var(--section-padding);
    background-color: #f8f8f8;
}

.service-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.more {
    color: var(--secondary-color);
    font-weight: bold;
    position: relative;
}

.more:after {
    content: " >";
    transition: margin-left 0.3s ease;
}

.more:hover:after {
    margin-left: 5px;
}

/* Slogan Section */
.slogan {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: var(--section-padding);
    text-align: center;
}

.slogan h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.slogan p {
    font-size: 1.2rem;
}

/* Booking Info Section */
.booking-info {
    padding: var(--section-padding);
}

.booking-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.booking-info p {
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.app-info {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.app-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.buttons {
    display: flex;
    gap: 1rem;
}

/* Airport Transfer Section */
.airport-transfer {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/airport.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: var(--section-padding);
    text-align: center;
}

.airport-transfer h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.airport-transfer p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.transfer-info {
    background-color: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 5px;
    color: var(--text-color);
    text-align: left;
    margin-top: 2rem;
}

.transfer-info h2 {
    color: var(--secondary-color);
    text-align: left;
}

.transfer-info .app-info {
    background-color: rgba(248,248,248,0.8);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: #f8f8f8;
}

.contact-section h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.phone-numbers {
    margin-bottom: 2rem;
}

.phone-numbers p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.payment-info h2 {
    margin-top: 2rem;
}

.payment-info p {
    margin-bottom: 1rem;
    max-width: 800px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 5rem 2rem 2rem;
    position: relative;
    background-image: linear-gradient(rgba(51,51,51,0.92), rgba(51,51,51,0.97)), url('img/taxi-bg.jpg');
    background-size: cover;
    background-position: center;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.contact-details {
    text-align: left;
}

.contact-details h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-details:hover h3::after {
    width: 70px;
}

.contact-details p {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.contact-details a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.footer-links {
    text-align: left;
}

.footer-links h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links:hover h3::after {
    width: 70px;
}

.footer-links a {
    display: block;
    margin-bottom: 1rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.05rem;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

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

.social-links {
    text-align: left;
}

.social-links h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.social-links:hover h3::after {
    width: 70px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icons i {
    font-size: 1.4rem;
    margin-right: 0.7rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background-color: rgba(255,255,255,0.1);
}

.copyright {
    font-size: 0.95rem;
    color: #aaa;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.copyright p {
    margin-bottom: 0;
    line-height: 1.4;
}

.copyright p:first-child {
    margin-bottom: 0;
}

.copyright a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom .payment-methods {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.footer-bottom .payment-methods img {
    height: 30px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.footer-bottom .payment-methods img:hover {
    opacity: 1;
    transform: translateY(-3px);
    filter: grayscale(0%);
}

/* Media Queries */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-info-box {
        margin-top: 2rem;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-details, .footer-links, .social-links {
        text-align: center;
    }
    
    .contact-details h3::after, 
    .footer-links h3::after,
    .social-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Sprachauswahl */
.language-selector {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    z-index: 1001;
    align-items: center;
    margin-left: 0.5rem;
}

.language-btn {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 2rem;
    text-align: center;
    margin: 0 0.1rem;
}

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

nav ul li.language-selector {
    margin-right: 0;
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        position: relative;
        flex-wrap: wrap;
    }

    .logo-container {
        flex: 1;
        margin-bottom: 0;
    }

    /* Hamburger Menu Button */
    .hamburger-menu {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
        margin-left: auto;
    }

    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    /* Animierter Hamburger Button */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Navigation */
    nav {
        display: none;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        padding: 1rem;
        display: block;
        color: #fff;
        text-align: left;
    }

    /* Dropdown für Mobile */
    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(0,0,0,0.2);
        box-shadow: none;
        padding: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding-left: 2rem;
    }

    /* Language Selector für Mobile */
    .language-selector {
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Booking Button für Mobile */
    .booking-button {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .booking-button .btn-primary {
        width: 100%;
        margin: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .cookie-notice {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .language-btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
        min-width: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-info {
        flex-wrap: wrap;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20c15e;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    font-size: 2.2rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
    .whatsapp-float i {
        font-size: 1.8rem;
    }
}

#whatsapp-button { display: none; }

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.form-group.checkbox:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin: 0.2rem 0 0 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-group.checkbox label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    color: #555;
    flex: 1;
}

.form-group.checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-group.checkbox a:hover {
    color: var(--secondary-color);
}

/* Media Queries */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-info-box {
        margin-top: 2rem;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-details, .footer-links, .social-links {
        text-align: center;
    }
    
    .contact-details h3::after, 
    .footer-links h3::after,
    .social-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Cookie Banner */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 9998;
}

.cookie-banner {
    position: fixed;
    top: 350px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    padding: 2rem 3rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ffcc00;
    color: #333;
}

.btn-settings {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-accept:hover {
    background-color: #e6b800;
}

.btn-settings:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        width: 95%;
        bottom: auto;
        top: 150px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 12px;
    z-index: 10000;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.modal-content {
    position: relative;
    width: 100%;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background-color: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 1rem 2rem;
}

.cookie-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-option {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    align-items: center;
}

.cookie-info h3 {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.modal-footer {
    padding: 1.5rem 2rem;
    text-align: right;
}

.btn-save {
    background-color: #ffcc00;
    color: #333;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

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

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

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

input:checked + .slider {
    background-color: #ffcc00;
}

input:disabled + .slider {
    background-color: #ffcc00;
    cursor: not-allowed;
}

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

@media (max-width: 768px) {
    .cookie-settings-modal {
        width: 95%;
        margin: 0 auto;
        top: 150px;
    }

    .cookie-option {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
} 