/* Tucanode - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* Dark section typography */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--white);
}

.section-dark p {
    color: var(--white);
    opacity: 0.9;
}

.section-dark .card h3 {
    color: var(--dark-gray);
}

.section-dark .card p {
    color: var(--medium-gray);
}

/* Color Variables */
:root {
    --primary-red: #8B0000;
    --secondary-red: #A52A2A;
    --light-gray: #f8f8f8;
    --medium-gray: #666;
    --dark-gray: #333;
    --white: #fff;
}

/* Header Styles */
.header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

/* Hero backgrounds for different pages */
.hero-home {
    background: linear-gradient(135deg, var(--primary-red) 0%, #5a0000 50%, var(--primary-red) 100%);
    position: relative;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-services {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
    position: relative;
}

.hero-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.hero-contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 0 20 L 20 0 M 20 40 L 40 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23lines)"/></svg>');
}

.hero-privacy {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 50%, #34495e 100%);
    position: relative;
}

.hero-privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,12.5 25,22.5 15,30 5,22.5 5,12.5" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
}

.hero-terms {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
}

.hero-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="squares" width="25" height="25" patternUnits="userSpaceOnUse"><rect x="5" y="5" width="15" height="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23squares)"/></svg>');
}

.hero-thank {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #27ae60 100%);
    position: relative;
}

.hero-thank::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="checkmarks" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 5 15 L 12 22 L 25 8" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23checkmarks)"/></svg>');
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Ensure hero content is above background patterns */
.hero-home .hero-content,
.hero-about .hero-content,
.hero-services .hero-content,
.hero-contact .hero-content,
.hero-privacy .hero-content,
.hero-terms .hero-content,
.hero-thank .hero-content {
    position: relative;
    z-index: 2;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-dark {
    background-color: var(--primary-red);
    color: var(--white);
}

.section-light {
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Cards */
.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* Statistics */
.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 2rem 0;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
    display: block;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Dark section statistics */
.section-dark .stat-number {
    color: var(--white);
}

.section-dark .stat-label {
    color: var(--white);
    opacity: 0.9;
}

/* Dark section cards */
.section-dark .card {
    background-color: var(--white);
}

.section-dark .card h3 {
    color: var(--dark-gray);
}

.section-dark .card p {
    color: var(--medium-gray);
}

/* Dark section buttons */
.section-dark .cta-button {
    background-color: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.section-dark .cta-button:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Form submit button in dark sections */
.section-dark .contact-form .cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-dark .contact-form .cta-button:hover {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Dark section all text elements */
.section-dark strong,
.section-dark b {
    color: var(--white);
}

.section-dark a {
    color: var(--white);
    text-decoration: underline;
}

.section-dark a:hover {
    color: var(--white);
    opacity: 0.8;
}

/* Ensure all text in dark sections is white */
.section-dark * {
    color: inherit;
}

.section-dark .card * {
    color: inherit;
}

/* Contact information in dark sections */
.section-dark .content-section {
    background-color: var(--white);
    color: var(--dark-gray);
}

.section-dark .content-section h3,
.section-dark .content-section h4 {
    color: var(--dark-gray);
}

.section-dark .content-section p {
    color: var(--medium-gray);
}

.section-dark .content-section strong {
    color: var(--dark-gray);
}

/* Contact form in dark sections */
.section-dark .contact-form {
    background-color: var(--white);
    color: var(--dark-gray);
}

.section-dark .contact-form h2 {
    color: var(--dark-gray);
}

.section-dark .contact-form p {
    color: var(--medium-gray);
}

.section-dark .contact-form label {
    color: var(--dark-gray);
}

.section-dark .contact-form input,
.section-dark .contact-form textarea {
    color: var(--dark-gray);
    background-color: var(--white);
    border: 1px solid #ddd;
}

.section-dark .contact-form input:focus,
.section-dark .contact-form textarea:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 5px rgba(139, 0, 0, 0.3);
}

/* Contact information links */
.section-dark .content-section a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-dark .content-section a:hover {
    color: var(--secondary-red);
    text-decoration: underline;
}

/* Email links */
.section-dark .content-section a[href^="mailto:"] {
    color: var(--primary-red);
    font-weight: 500;
}

.section-dark .content-section a[href^="mailto:"]:hover {
    color: var(--secondary-red);
}

/* Phone and address styling */
.section-dark .content-section p {
    margin-bottom: 0.5rem;
}

.section-dark .content-section strong {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.contact-form p {
    color: var(--medium-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--dark-gray);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Dark section contact form */
.section-dark .contact-form {
    background-color: var(--white);
}

.section-dark .contact-form h2 {
    color: var(--dark-gray);
}

.section-dark .contact-form p {
    color: var(--medium-gray);
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.footer-section p {
    color: var(--medium-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-container {
        position: relative;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .cta-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Mobile dark sections */
    .section-dark .stat-number {
        font-size: 2rem;
    }
    
    .section-dark .stat-label {
        font-size: 0.8rem;
    }
}

/* FAQ and Content Sections */
.faq-item {
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--white);
    color: var(--dark-gray);
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-gray);
    display: none;
}

/* Content sections with proper contrast */
.content-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content-section h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.content-section h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.content-section p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.content-section ul {
    color: var(--medium-gray);
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
}

/* Dark sections content */
.section-dark .content-section {
    background: var(--white);
}

.section-dark .content-section h2,
.section-dark .content-section h3 {
    color: var(--dark-gray);
}

.section-dark .content-section p,
.section-dark .content-section ul {
    color: var(--medium-gray);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-red);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 1.5rem;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-banner-text p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-accept-all,
.cookie-necessary,
.cookie-settings {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept-all {
    background-color: var(--primary-red);
    color: var(--white);
}

.cookie-accept-all:hover {
    background-color: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.3);
}

.cookie-necessary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cookie-necessary:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.cookie-settings {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border: 1px solid #ddd;
}

.cookie-settings:hover {
    background-color: #e0e0e0;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-settings-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cookie-settings-content h3 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.cookie-category h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.cookie-category p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .slider {
    background-color: var(--primary-red);
}

.cookie-toggle input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-toggle.disabled .slider {
    background-color: #999;
    cursor: not-allowed;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cookie-save,
.cookie-cancel {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-save {
    background-color: var(--primary-red);
    color: var(--white);
}

.cookie-save:hover {
    background-color: var(--secondary-red);
}

.cookie-cancel {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border: 1px solid #ddd;
}

.cookie-cancel:hover {
    background-color: #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
    }
    
    .cookie-accept-all,
    .cookie-necessary,
    .cookie-settings {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .cookie-settings-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-save,
    .cookie-cancel {
        width: 100%;
    }
}
