/* Global Styles */
:root {
    --primary-dark: #111827;
    --secondary-dark: #1F2937;
    --accent-gold: #FFD700;
    --light-gray: #F3F4F6;
    --medium-gray: #9CA3AF;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--secondary-dark);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn.primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn.primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header Styles */
.dark-header {
    background-color: var(--primary-dark);
    color: var(--white);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger Menu Base Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--accent-gold);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        opacity: 0.9;
        transition: var(--transition);
    }
    
    .nav-links a:hover {
        opacity: 1;
        color: var(--accent-gold);
        padding-left: 10px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.active {
        color: var(--accent-gold);
        font-weight: 600;
    }
    
    /* Close button inside mobile menu */
    .nav-links::before {
        content: '×';
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav-links::before:hover {
        color: var(--accent-gold);
        transform: scale(1.1);
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Sections */
.hero {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.page-hero {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* Featured Services */
.featured-services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    margin: 20px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-gold);
    font-weight: 600;
    transition: var(--transition);
}

.learn-more:hover {
    color: #E6C200;
}

/* Testimonial Showcase */
.testimonial-showcase {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
}

blockquote::before {
    top: -20px;
    left: -10px;
}

blockquote::after {
    bottom: -40px;
    right: -10px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin-bottom: 5px;
}

.client-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-dark);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-col p,
.footer-col address {
    opacity: 0.8;
    margin-bottom: 15px;
    font-style: normal;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-content .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text h3 {
    margin: 30px 0 15px;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Leadership Section */
.leadership {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-gold);
}

.team-member h3 {
    margin-bottom: 5px;
}

.position {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    opacity: 0.8;
}

/* Services Page Styles */
.services-list {
    padding: 80px 0;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--light-gray);
}

.tab-btn.active {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.tab-btn:hover:not(.active) {
    background-color: var(--medium-gray);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-gold);
}

.service-info h3 {
    margin: 25px 0 15px;
    color: var(--accent-gold);
}

.service-info ul {
    list-style-position: inside;
    margin-bottom: 25px;
}

.service-info li {
    margin-bottom: 10px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-content .container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--white);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-form h2 {
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.office-map {
    position: relative;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.office-map img {
    width: 100%;
    display: block;
}

.map-marker {
    position: absolute;
    cursor: pointer;
}

.map-marker.ny {
    top: 30%;
    left: 75%;
}

.map-marker.la {
    top: 60%;
    left: 15%;
}

.map-marker.chi {
    top: 40%;
    left: 45%;
}

.marker-dot {
    width: 15px;
    height: 15px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.marker-dot::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    top: -7.5px;
    left: -7.5px;
    z-index: 1;
    animation: pulse 2s infinite;
}

.marker-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.map-marker:hover .marker-label {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-content .container,
    .contact-content .container {
        flex-direction: column;
    }
    
    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }
    
    .hero-image,
    .about-image,
    .service-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stats .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== LEGAL PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

/* Legal Content */
.impressum-content {
    padding: 80px 0;
    background-color: var(--white);
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-section {
    margin-bottom: 50px;
}

.impressum-section h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-gold);
    font-size: 1.8rem;
}

.impressum-section h3 {
    color: var(--primary-dark);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.impressum-section p {
    margin-bottom: 15px;
    color: var(--secondary-dark);
}

.impressum-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.impressum-section li {
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.contact-info {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.contact-details p {
    margin-bottom: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Smooth transitions for all interactive elements */
.nav-links,
.nav-links a,
.hamburger,
.close-menu,
.nav-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prevent flash of unstyled content */
.nav-links {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* ===== GDPR COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cookie-text p {
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-text a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.cookie-btn.accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cookie-btn.accept:hover {
    background: #E6C200;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn.settings {
    background: var(--secondary-dark);
    color: var(--white);
}

.cookie-btn.settings:hover {
    background: #374151;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--white);
    color: var(--primary-dark);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 10px;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 6px;
}

.cookie-option h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-gray);
    transition: var(--transition);
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--accent-gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-option p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Required cookies should be disabled */
#necessaryCookies {
    display: none;
}

.cookie-option.required .cookie-toggle {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
    
    .cookie-modal-content {
        padding: 25px 20px;
        margin: 20px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        gap: 15px;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
}