/* CSS Variables & Design System */
:root {
  --primary: #0f172a; /* Navy Blue - Trust */
  --primary-light: #1e293b;
  --secondary: #3b82f6; /* Bright Blue */
  --warning: #f59e0b; /* Yellow/Orange - Vibrant CTA */
  --warning-hover: #d97706;
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--warning);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-warning {
  background-color: var(--warning);
  color: white;
}

.btn-warning:hover {
  background-color: var(--warning-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.lg-btn {
  padding: 16px 32px;
  font-size: 1.125rem;
  border-radius: 12px;
}

/* Animations */
.pulse-glow {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  color: var(--secondary);
  width: 32px;
  height: 32px;
}

.text-warning {
  color: var(--warning);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--secondary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  color: var(--primary);
}

.mobile-nav {
  display: none;
  background-color: white;
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('images/guvenlik-filesi_400x274.jpg'); /* Background Image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-right: 24px;
}

.hero .badgex {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 24px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Features */
.features {
  padding: 60px 0;
  background-color: white;
  position: relative;
  margin-top: -60px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  z-index: 20;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotate(0) scale(1.1);
  background-color: var(--secondary);
  color: white;
}

.feature-icon i {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.8));
}

.service-icon-abs {
  position: absolute;
  bottom: -24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--warning);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
  z-index: 2;
  transition: var(--transition);
}

.service-card:hover .service-icon-abs {
  transform: scale(1.1) rotate(5deg);
}

.service-content {
  padding: 32px 24px 24px;
  position: relative;
  z-index: 1;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-content p {
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e293b' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1.25rem;
  margin-bottom: 32px;
}

/* Footer Section */
.footer {
  background-color: #020617; /* Very dark navy */
  color: #94a3b8;
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  color: white;
  margin-bottom: 24px;
}

.footer-info p {
  max-width: 300px;
}

.footer-contact h3 {
  color: white;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  color: var(--warning);
  background-color: rgba(245, 158, 11, 0.1);
  padding: 10px;
  border-radius: 8px;
}

.contact-detail span {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  color: #e2e8f0;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--warning);
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background-color: #0f172a;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #475569;
  border: 1px solid #1e293b;
}

.map-placeholder i {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.footer-bottom {
  background-color: #0f172a;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #1e293b;
}

/* Service Sub-page Styles */
.page-header {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.page-header-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(15,23,42,0.9), rgba(15,23,42,0.6));
}
.page-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 8px;
}
.page-header p {
  color: #cbd5e1;
  font-size: 1.25rem;
}
.py-section {
  padding: 80px 24px;
}
.service-content-split {
  display: flex;
  gap: 48px;
  align-items: stretch;
}
.service-text {
  flex: 1.2;
}
.service-text h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--primary);
}
.service-text p {
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.service-text ul {
  list-style: none;
  margin: 24px 0;
}
.service-text ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
}
.service-image-large {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mt-4 { margin-top: 32px; }
.mt-2 { margin-top: 16px; }
.flex { display: flex; }
.gap-4 { gap: 16px; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }

.service-contact-box {
  background-color: var(--card-bg);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.service-contact-box h3 { margin-bottom: 8px; font-size: 1.25rem; }
.service-contact-box p { font-size: 0.95rem; color: var(--text-muted); }

/* Hakkimizda Section */
.hakkimizda {
  padding: 100px 0;
  background-color: white;
}
.hakkimizda-split {
  display: flex;
  gap: 60px;
  align-items: center;
}
.hakkimizda-image {
  flex: 1;
  position: relative;
}
.hakkimizda-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.hakkimizda-text {
  flex: 1.2;
}
.hakkimizda-text p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-muted);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 20px -3px rgba(37, 211, 102, 0.6);
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  .features {
    width: calc(100% - 48px);
    margin-top: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-content-split {
    flex-direction: column;
    gap: 32px;
  }
  .hakkimizda-split {
    flex-direction: column;
    gap: 32px;
  }
}

/* --- OVERRIDES & NEW FEATURES --- */

/* Modern Elevated Logo */
.navbar .logo {
  font-family: var(--font-family);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--primary) 30%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  white-space: nowrap;
}
.navbar .logo a {
  gap: 10px !important;
  white-space: nowrap;
}
.navbar .logo span {
  display: inline;
  line-height: 1.2;
  white-space: nowrap;
}
.navbar .logo span strong {
  font-weight: 800;
  letter-spacing: 1.5px;
}
.navbar .logo-icon {
  -webkit-text-fill-color: initial;
  color: var(--secondary);
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 6px rgba(59,130,246,0.35));
  flex-shrink: 0;
}
.footer .footer-logo {
  text-transform: uppercase;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 30%, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* Animated Menu Hover Effects */
.nav-links a:not(.nav-btn) {
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.nav-links a:not(.nav-btn):hover {
  background-color: rgba(59, 130, 246, 0.08);
  color: var(--secondary);
  transform: translateY(-2px);
}
.nav-links a:not(.nav-btn)::after {
  height: 2px;
  border-radius: 2px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
}
.nav-links a:not(.nav-btn):hover::after {
  width: 60%;
}

/* Premium Animated CTA Button in Nav */
.navbar .nav-links .nav-btn.btn-outline {
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  border-radius: 999px !important;
  border: 1.5px solid var(--secondary) !important;
  color: var(--secondary) !important;
  background: transparent !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  gap: 6px;
}
.navbar .nav-links .nav-btn.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), #2563eb);
  z-index: -1;
  transition: left 0.4s ease;
  border-radius: inherit;
}
.navbar .nav-links .nav-btn.btn-outline:hover {
  color: white !important;
  border-color: var(--secondary) !important;
  background: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(59, 130, 246, 0.5);
}
.navbar .nav-links .nav-btn.btn-outline:hover::before {
  left: 0;
}
.navbar .nav-links .nav-btn.btn-outline i {
  width: 14px;
  height: 14px;
  animation: navPhoneRing 2s ease-in-out infinite;
}
@keyframes navPhoneRing {
  0%, 80%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(12deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(5deg); }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--secondary);
  font-size: 1.2rem;
  transition: var(--transition);
}
.social-icons a:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-4px) rotate(8deg);
  box-shadow: var(--shadow-md);
}
.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}
.footer-social .social-icons a:hover {
  background-color: var(--secondary);
  color: white;
}

/* Map Iframe Reset */
.footer-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  border: none;
  box-shadow: var(--shadow-sm);
}

/* Floating Actions (WhatsApp & Phone) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.wa-btn {
  background-color: #25d366;
}
.wa-btn:hover {
  background-color: #1ebe57;
}
.phone-btn {
  background-color: var(--warning);
}
.phone-btn:hover {
  background-color: var(--warning-hover);
}
.floating-btn:hover {
  transform: scale(1.1) translateY(-6px);
  color: white;
}
/* Pulse effect on WhatsApp */
.wa-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background-color: inherit;
  z-index: -1;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1000;
  max-width: 90%;
  width: 800px;
  transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show {
  bottom: 24px;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #cbd5e1;
}
.cookie-banner a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 500;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}


