﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FDBEA2;
    --secondary-color: #82BD4D;
    --dark-bg: #0a0a0f;
    --dark-secondary: #1a1a2e;
    --neon-pink: #ff006e;
    --neon-cyan: #00f5ff;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(26, 26, 46, 0.98));
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color)) 1;
    box-shadow: 0 4px 30px rgba(253, 190, 162, 0.2), 0 0 50px rgba(130, 189, 77, 0.1);
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px var(--primary-color)) drop-shadow(0 0 30px var(--secondary-color));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 15px var(--primary-color)) drop-shadow(0 0 30px var(--secondary-color));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 25px var(--primary-color)) drop-shadow(0 0 40px var(--secondary-color));
        transform: scale(1.05);
    }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 190, 162, 0.2);
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 20px rgba(253, 190, 162, 0.4);
    transform: translateY(-2px);
}

.nav-menu a.active::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(253, 190, 162, 0.5);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Hero Banner */
.hero-banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(253, 190, 162, 0.1), rgba(130, 189, 77, 0.1)),
                url('../image/picture1.jpg') center/cover;
    position: relative;
    margin-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.neon-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  
    margin-bottom: 1rem;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px var(--primary-color));
    }
    to {
        filter: drop-shadow(0 0 40px var(--secondary-color));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(253, 190, 162, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(253, 190, 162, 0.8);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    box-shadow: 0 0 15px var(--secondary-color);
}

/* About Section */
.about-section {
    background: var(--dark-secondary);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Block */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.text-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--secondary-color);
}

.text-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    background: #2a2a3e;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(253, 190, 162, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Consultation Section */
.consultation-section {
    background: linear-gradient(135deg, rgba(253, 190, 162, 0.1), rgba(130, 189, 77, 0.1));
}

.consultation-card {
    background: var(--dark-secondary);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(253, 190, 162, 0.3);
}

.consultation-icon {
    width: 80px;
    height: 80px;
    color: var(--secondary-color);
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 20px var(--secondary-color));
}

.consultation-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--primary-color);
}

.consultation-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--dark-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--dark-bg);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(130, 189, 77, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(130, 189, 77, 0.4);
}

.review-stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.review-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.review-author {
    color: var(--secondary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(253, 190, 162, 0.05), rgba(130, 189, 77, 0.05));
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-secondary);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(253, 190, 162, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Category Section */
.category-section {
    background: var(--dark-secondary);
}

.category-tree {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-branch {
    background: var(--dark-bg);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(130, 189, 77, 0.2);
    transition: all 0.3s ease;
}

.category-branch:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(130, 189, 77, 0.4);
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.category-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.subcategory-list {
    list-style: none;
    padding: 0;
}

.subcategory-list li {
    color: var(--text-gray);
    padding: 0.5rem 0 0.5rem 1rem;
    border-left: 2px solid var(--secondary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.subcategory-list li:hover {
    color: var(--text-light);
    border-left-color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-secondary));
    border-top: 2px solid var(--primary-color);
    padding: 3rem 0 1rem;
    box-shadow: 0 -10px 50px rgba(253, 190, 162, 0.2);
}

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

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    padding-left: 5px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 190, 162, 0.3);
    color: var(--text-gray);
}

/* Contact Page Styles */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(253, 190, 162, 0.1), rgba(130, 189, 77, 0.1));
    margin-top: 90px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: var(--dark-secondary);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(253, 190, 162, 0.3);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 10px var(--secondary-color));
    flex-shrink: 0;
}

.contact-item-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-gray);
    text-decoration: none;
}

.contact-item-content a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--dark-secondary);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(130, 189, 77, 0.3);
}

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

.form-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(130, 189, 77, 0.3);
}

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

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(253, 190, 162, 0.5);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(253, 190, 162, 0.8);
}

.map-container {
    margin: 3rem 0;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(253, 190, 162, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--dark-secondary);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 2px solid var(--primary-color);
        border-radius: 0;
        box-shadow: 0 10px 50px rgba(253, 190, 162, 0.3);
    }

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

    .nav-menu li {
        margin: 0.5rem 1rem;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: left;
        padding-left: 2rem;
    }

    .neon-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-block,
    .content-block.reverse {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

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

    .category-tree {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .logo {
        gap: 10px;
    }

    .neon-title {
        font-size: 2rem;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .consultation-card {
        padding: 2rem 1rem;
    }

    .consultation-icon {
        width: 60px;
        height: 60px;
    }

    .consultation-content h2 {
        font-size: 1.8rem;
    }
}

/* Success Page */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 90px;
}

.success-content {
    background: var(--dark-secondary);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 0 50px rgba(130, 189, 77, 0.4);
    max-width: 600px;
}

.success-icon {
    width: 100px;
    height: 100px;
    color: var(--secondary-color);
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 30px var(--secondary-color));
}

.success-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--primary-color);
}

.success-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-bg));
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -10px 50px rgba(253, 190, 162, 0.3);
    padding: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.cookie-banner-text p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--primary-color);
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(253, 190, 162, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(253, 190, 162, 0.6);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.cookie-btn-decline:hover {
    background: rgba(253, 190, 162, 0.1);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-text h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .cookie-banner-buttons {
        gap: 0.6rem;
    }

    .cookie-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 0.8rem;
    }

    .cookie-banner-content {
        gap: 0.8rem;
    }

    .cookie-banner-text h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .cookie-banner-text a {
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        gap: 0.5rem;
    }

    .cookie-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}