/* -------------------------------------------------------------------------- */
/* TEMEL STİLLER VE DEĞİŞKENLER (Tüm sayfalar için geçerli)                     */
/* -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4169E1;
    --primary-dark: #1e3a8a;
    --secondary: #0ea5e9;
    --accent: #4169E1;
    --dark: #1a1d2e;
    --light: #f8f9fa;
    --gray: #6b7280;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light); /* Arka planı açık gri yapalım */
}

html {
    scroll-behavior: smooth;
}

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

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* -------------------------------------------------------------------------- */
/* HEADER VE NAVİGASYON (Tüm sayfalarda aynı)                                 */
/* -------------------------------------------------------------------------- */
header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-bottom: 1px solid #e5e7eb;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}


/* -------------------------------------------------------------------------- */
/* FOOTER (Tüm sayfalarda aynı)                                               */
/* -------------------------------------------------------------------------- */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-section h3 { margin-bottom: 1.2rem; color: white; font-weight: 600; font-size: 1.1rem; }
.footer-section p { color: #9ca3af; line-height: 1.8; font-size: 0.95rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section a { color: #9ca3af; text-decoration: none; transition: color 0.3s; font-size: 0.95rem; }
.footer-section a:hover { color: white; }
.contact-info-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; color: #9ca3af; }
.contact-info-item i { color: var(--primary); font-size: 1.1rem; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #374151; color: #9ca3af; font-size: 0.9rem; }
.footer-legal-links { margin-top: 1rem; font-size: 0.9rem; }
.footer-legal-links a { color: #9ca3af; text-decoration: none; margin: 0 10px; transition: color 0.3s; }
.footer-legal-links a:hover { color: white; }

/* -------------------------------------------------------------------------- */
/* ANA SAYFA BÖLÜMLERİ (index.html'e özel)                                    */
/* -------------------------------------------------------------------------- */
/* Hero Section */
.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 5rem 0; text-align: center; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.95; max-width: 800px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 0.9rem 2rem; border: none; border-radius: 6px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-primary { background: white; color: var(--primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,255,255,0.3); }
.btn-secondary { background: rgba(255,255,255,0.2); color: white; border: 2px solid white; }
.btn-secondary:hover { background: rgba(255,255,255,0.3); }

/* Stats Bar */
.stats-bar { background: var(--light); padding: 3rem 0; margin-top: -2rem; position: relative; z-index: 10; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; max-width: 900px; margin: 0 auto; background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; font-weight: 700; }
.stat-item p { color: var(--gray); font-weight: 500; font-size: 0.95rem; }

/* Services Section */
.services { padding: 5rem 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #e5e7eb; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.service-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--dark); font-weight: 600; }
.service-card p { color: var(--gray); margin-bottom: 1rem; line-height: 1.6; }
.service-card ul { list-style: none; margin: 1rem 0; padding-left: 0;}
.service-card ul li { padding: 0.6rem 0; color: var(--gray); display: flex; align-items: start; gap: 0.7rem; font-size: 0.95rem; }
.service-card ul li::before { content: "✓"; color: var(--primary); font-weight: bold; flex-shrink: 0; font-size: 1.1rem; }

/* Process Section */
.process { padding: 5rem 0; background: white; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; padding: 2rem 1.5rem; }
.step-number { width: 60px; height: 60px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 1rem; }
.step h3 { margin-bottom: 0.8rem; color: var(--dark); font-weight: 600; font-size: 1.2rem; }
.step p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* Quote Form Section */
.quote-section { padding: 5rem 0; background: white; }
.quote-form-container { max-width: 600px; margin: 3rem auto 0; background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid #e5e7eb; }
.quote-form-title { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2rem; color: var(--dark); }
.quote-form-title i { color: var(--primary); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.form-group label .required { color: #ef4444; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem; border: 1px solid #d1d5db; border-radius: 6px; font-size: 0.95rem; transition: border-color 0.3s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-top: 0.8rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; }
.checkbox-item input[type="checkbox"] { width: auto; cursor: pointer; }
.checkbox-item label { margin-bottom: 0 !important; font-weight: 500 !important; cursor: pointer; font-size: 0.9rem; }
.char-count { text-align: right; font-size: 0.85rem; color: var(--gray); margin-top: 0.3rem; }
.submit-btn { width: 100%; background: var(--primary); color: white; padding: 1rem; border: none; border-radius: 6px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(65, 105, 225, 0.3); }
.form-message { padding: 1rem; border-radius: 6px; margin-bottom: 1rem; display: none; }
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* -------------------------------------------------------------------------- */
/* TOOLS SECTION (index.html'e özel)                                          */
/* -------------------------------------------------------------------------- */
.tools { padding: 5rem 0; background: var(--light); }
.tools-grid { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; margin-top: 3rem; }
.tool-item { text-align: center; transition: transform 0.3s; background: white; padding: 2rem 2.5rem; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); min-width: 140px; }
.tool-item:hover { transform: translateY(-5px); }
.tool-icon { font-size: 3.5rem; margin-bottom: 0.8rem; color: var(--primary); }
.tool-item h4 { font-size: 1.1rem; color: var(--dark); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* SPECIAL NEEDS SECTION (index.html'e özel)                                  */
/* -------------------------------------------------------------------------- */
.special-needs { padding: 4rem 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; text-align: center; }
.special-needs h2 { font-size: 2rem; margin-bottom: 1rem; font-weight: 700; }
.special-needs p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.95; max-width: 800px; margin-left: auto; margin-right: auto; }
.special-btn { background: white; color: var(--primary); padding: 0.9rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s; }
.special-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,255,255,0.3); }

/* -------------------------------------------------------------------------- */
/* MÜŞTERİ YORUMLARI BÖLÜMÜ (index.html'e özel)                               */
/* -------------------------------------------------------------------------- */
.testimonials { padding: 5rem 0; background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-left: 5px solid var(--primary); display: flex; flex-direction: column; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.author-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid #e0e7ff; }
.author-name { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin: 0; }
.author-title { font-size: 0.9rem; color: var(--gray); margin: 0; }
.testimonial-text { font-style: italic; color: var(--gray); flex-grow: 1; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-text::before { content: '"'; font-size: 2.5rem; color: var(--primary); font-weight: bold; float: left; margin-right: 0.5rem; line-height: 1; }
.testimonial-rating { color: #f59e0b; font-size: 1rem; text-align: right; }

/* -------------------------------------------------------------------------- */
/* BLOG SAYFASI BÖLÜMLERİ (blog.html ve yazi-sablonu.html'e özel)             */
/* -------------------------------------------------------------------------- */
.blog-header { background: var(--white); padding: 4rem 0; text-align: center; border-bottom: 1px solid #e5e7eb; }
.blog-header h1 { font-size: 2.8rem; color: var(--dark); }
.blog-header p { font-size: 1.1rem; color: var(--gray); margin-top: 0.5rem; }
.blog-section { padding: 5rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-post-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #e5e7eb; display: flex; flex-direction: column; }
.blog-post-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.post-image-link { display: block; }
.post-image { width: 100%; height: 200px; object-fit: cover; }
.post-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-meta { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.8rem; }
.post-title { font-size: 1.3rem; color: var(--dark); margin-bottom: 0.8rem; font-weight: 600; flex-grow: 1; }
.post-title a { color: inherit; text-decoration: none; }
.post-excerpt { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.2rem; }
.read-more-btn { color: var(--primary); text-decoration: none; font-weight: 600; align-self: flex-end; }
.read-more-btn:hover { text-decoration: underline; }

/* Arama ve Filtreleme */
.blog-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding: 2rem; background-color: var(--white); border-radius: 12px; margin-bottom: 3rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
.search-bar { position: relative; flex-grow: 1; min-width: 250px; }
.search-bar input { width: 100%; padding: 0.8rem 1rem 0.8rem 2.5rem; border: 1px solid #d1d5db; border-radius: 6px; font-size: 0.95rem; transition: border-color 0.3s; }
.search-bar input:focus { outline: none; border-color: var(--primary); }
.search-bar i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray); }
.category-filters { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.filter-btn { background: #e0e7ff; color: var(--primary); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: white; box-shadow: 0 2px 8px rgba(65, 105, 225, 0.4); }
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid #e5e7eb; }
.post-tag { background: var(--light); color: var(--gray); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }

/* Tekil Yazı Sayfası Stilleri */
.post-container { max-width: 800px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.post-full-image { width: 100%; height: auto; max-height: 400px; object-fit: cover; border-radius: 12px; margin-bottom: 2rem; }
.post-full-title { font-size: 2.5rem; margin-bottom: 1rem; color: var(--dark); font-weight: 700; line-height: 1.3; }
.post-full-meta { margin-bottom: 2rem; color: var(--gray); border-bottom: 1px solid #e5e7eb; padding-bottom: 1.5rem; }
.post-full-content { font-size: 1.1rem; line-height: 1.8; }
.post-full-content h2 { font-size: 1.8rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.post-full-content h3 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 1rem; }
.post-full-content p { margin-bottom: 1.5rem; }
.post-full-content ul, .post-full-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.post-full-content li { margin-bottom: 0.8rem; }
.post-full-content strong { color: var(--dark); }
.post-full-content a { color: var(--primary); text-decoration: underline; }

/* -------------------------------------------------------------------------- */
/* HAKKIMDA SAYFASI (hakkimda.html'e özel)                                    */
/* -------------------------------------------------------------------------- */
.about-section { padding: 5rem 0; }
.about-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid #e5e7eb; text-align: center; }
.profile-picture { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 1.5rem; border: 4px solid var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.about-content h1 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; color: var(--dark); font-weight: 700; }
.about-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; color: var(--dark); font-weight: 600; border-bottom: 2px solid var(--primary); padding-bottom: 0.5rem; text-align: left; }
.about-content p { font-size: 1.05rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.8; text-align: left; }
.about-content strong { color: var(--dark); }


/* -------------------------------------------------------------------------- */
/* RESPONSIVE AYARLAR (Tüm sayfalar için geçerli)                             */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .nav-links { display: none; width: 100%; flex-direction: column; margin-top: 1rem; gap: 1rem; text-align: center; }
    .nav-links.active { display: flex; }
    .mobile-menu-toggle { display: block; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .quote-form-container { padding: 1.5rem; }
    .blog-controls { flex-direction: column; align-items: stretch; }
    .post-full-title { font-size: 2rem; }
    .about-content { padding: 1.5rem; }
    .about-content h1 { font-size: 2rem; }
}

/* -------------------------------------------------------------------------- */
/* ÇEREZ BANNER STİLLERİ (Tüm sayfalarda aynı)                                 */
/* -------------------------------------------------------------------------- */
#cookie-consent-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d2e; color: white; padding: 1.5rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); z-index: 9999; display: none; animation: slideUp 0.5s ease-out; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-consent-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-consent-text { flex: 1; min-width: 300px; }
.cookie-consent-text h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: white; }
.cookie-consent-text p { font-size: 0.95rem; line-height: 1.6; color: #d1d5db; margin: 0; }
.cookie-consent-text a { color: #4169E1; text-decoration: underline; }
.cookie-consent-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.cookie-btn { padding: 0.75rem 1.5rem; border: none; border-radius: 6px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.cookie-btn-accept { background: #4169E1; color: white; }
.cookie-btn-accept:hover { background: #1e3a8a; transform: translateY(-2px); }
.cookie-btn-reject { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.cookie-btn-reject:hover { border-color: white; background: rgba(255,255,255,0.1); }
.cookie-btn-settings { background: transparent; color: #9ca3af; border: none; padding: 0.75rem 1rem; text-decoration: underline; }
.cookie-btn-settings:hover { color: white; }
#cookie-settings-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 10000; overflow-y: auto; padding: 2rem; }
.cookie-modal-content { background: white; max-width: 700px; margin: 0 auto; border-radius: 12px; padding: 2rem; position: relative; }
.cookie-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid #e5e7eb; }
.cookie-modal-header h2 { font-size: 1.8rem; color: #1a1d2e; margin: 0; }
.cookie-modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #6b7280; padding: 0.5rem; line-height: 1; }
.cookie-modal-close:hover { color: #1a1d2e; }
.cookie-category { margin-bottom: 1.5rem; padding: 1rem; background: #f8f9fa; border-radius: 8px; }
.cookie-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.cookie-category h3 { font-size: 1.1rem; color: #1a1d2e; margin: 0; }
.cookie-category p { font-size: 0.9rem; color: #6b7280; margin: 0.5rem 0 0 0; line-height: 1.5; }
.cookie-toggle { position: relative; display: inline-block; width: 50px; height: 26px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: 0.4s; border-radius: 34px; }
.cookie-toggle-slider:before { position: absolute; content: ""; height: 18px; width: 18px; left:
4px; bottom: 4px; background-color: white; transition: 0.4s; border-radius: 50%; }
.cookie-toggle input:checked + .cookie-toggle-slider { background-color: #4169E1; }
.cookie-toggle input:checked + .cookie-toggle-slider:before { transform: translateX(24px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-footer { display: flex; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid #e5e7eb; }
.cookie-modal-footer .cookie-btn { flex: 1; }
@media (max-width: 768px) { .cookie-consent-container { flex-direction: column; align-items: stretch; gap: 1.5rem; } .cookie-consent-buttons { flex-direction: column; } .cookie-btn { width: 100%; } .cookie-modal-footer { flex-direction: column; } }    
