:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-color: #F7F9FC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--light-color);
    overflow-x: hidden;
}

.header {
    background: var(--primary-color);
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

.main-content {
    padding: 120px 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.svg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonials {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 2.5rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}


/* Store Badges */
.store-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Store Badge Styles */
.store-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.store-badge.apple {
    background: #000;
}

.store-badge.google {
    background: #0F9D58;
}

.store-badge:hover {
    opacity: 0.9;
}

/* Team Section Styles */
.team-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer Styles */
.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Footer Consistency */
.footer-copyright, .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright p, .footer-bottom p {
    opacity: 0.6;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
}

.section-header p {
    color: var(--dark-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 1rem auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .store-badges {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Section */
.cookie-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cookie-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.cookie-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
}

.cookie-section p {
    margin-bottom: 1rem;
    color: var(--dark-color);
    opacity: 0.9;
}

.cookie-section ul {
    margin: 1rem 0 1rem 2rem;
}

.cookie-section li {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    opacity: 0.9;
}

/* Footer Styles */
.footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright p {
    opacity: 0.6;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--dark-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* Vendor Page Styles */
.vendor-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 4rem;
}

.vendor-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vendor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-5px);
}

.vendor-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.vendor-content {
    padding: 1.5rem;
}

.vendor-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.vendor-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vendor-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--light-color);
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 1200px;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 1200px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* About Page Styles */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.about-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.about-content {
    padding: 2rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-section {
    text-align: center;
    margin: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Common Page Styles */
.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
}

.page-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.page-content h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.page-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    opacity: 0.9;
}

/* Cookie Policy Specific Styles */
.cookie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cookie-type {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cookie-type h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Blog Styles */
.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.blog-meta i {
    color: var(--primary-color);
}

.load-more {
    display: block;
    width: fit-content;
    margin: 3rem auto;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.load-more:hover {
    background: var(--secondary-color);
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--dark-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--dark-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.button:hover {
    background: var(--secondary-color);
}

.contact-image {
    width: 100%;
    height: 300px;
    background-image: url('assets/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    text-align: center;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.button:hover {
    background: #ff5252;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 2.5rem 2rem 1.5rem;
    margin-top: 4rem;
}
.terms-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.terms-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.terms-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
}

.terms-section p {
    margin-bottom: 1rem;
    color: var(--dark-color);
    opacity: 0.9;
}

.terms-section ul {
    margin: 1rem 0 1rem 2rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    opacity: 0.9;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5252;
}

.cookie-btn.decline {
    background: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn.decline:hover {
    background: #e1e1e1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.cookie-