@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --ocean-deep: #0a1628;
  --ocean-mid: #0d2847;
  --cyan-energy: #00d4ff;
  --cyan-light: #7ce8ff;
  --burnt-orange: #ff6b35;
  --burnt-orange-dark: #e55a2b;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-dark: rgba(10, 22, 40, 0.8);
  --gradient-ocean: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, #0a3d62 100%);
  --gradient-energy: linear-gradient(135deg, var(--cyan-energy) 0%, var(--cyan-light) 100%);
  --gradient-heat: linear-gradient(135deg, var(--burnt-orange) 0%, var(--burnt-orange-dark) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ocean-deep);
  line-height: 1.2;
}

strong, p {
  color: inherit;
}

a {
  color: var(--cyan-energy);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--burnt-orange);
}

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

.section-dark {
  background: var(--gradient-ocean);
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.section-accent {
  background: var(--gradient-heat);
  color: #ffffff;
}

.section-accent h1,
.section-accent h2,
.section-accent h3,
.section-accent h4 {
  color: #ffffff;
}

.section-accent p {
  color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
  background: var(--gradient-energy);
  color: var(--ocean-deep) !important;
  font-weight: 600;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  min-height: 52px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff !important;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  min-height: 52px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-accent {
  background: var(--gradient-heat);
  color: #ffffff !important;
  font-weight: 600;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  min-height: 52px;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-dark {
  background: var(--ocean-deep);
  color: #ffffff !important;
  font-weight: 600;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  min-height: 52px;
}

.btn-dark:hover {
  background: var(--ocean-mid);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  color: var(--ocean-deep);
}

.glass-card-light h1,
.glass-card-light h2,
.glass-card-light h3,
.glass-card-light h4 {
  color: var(--ocean-deep);
}

.glass-card-light p {
  color: #475569;
}

.neo-brutalist {
  border: 3px solid var(--ocean-deep);
  box-shadow: 6px 6px 0px var(--ocean-deep);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.neo-brutalist:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--ocean-deep);
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

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

.section-title p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.7);
  z-index: 1;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-energy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.service-card p {
  color: #64748b;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burnt-orange);
  margin-top: auto;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-energy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.feature-card h3 {
  color: #ffffff;
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  color: #475569;
  font-size: 1.0625rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: #64748b;
}

.star-rating {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 12px;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.team-info span {
  color: var(--cyan-energy);
  font-weight: 500;
}

.team-info p {
  color: #64748b;
  margin-top: 12px;
  font-size: 0.9375rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--ocean-deep);
  font-size: 1.0625rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-energy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ocean-deep);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: #64748b;
  line-height: 1.7;
}

.contact-info-card {
  background: var(--ocean-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-energy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.contact-details a {
  color: var(--cyan-light);
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.95));
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: #ffffff;
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-energy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: #ffffff;
}

.logo-text span {
  color: var(--cyan-energy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-energy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-energy);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--cyan-energy);
}

.footer {
  background: var(--ocean-deep);
  color: #ffffff;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  font-size: 0.9375rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan-energy);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 32px;
  z-index: 9999;
  max-width: 600px;
  width: calc(100% - 48px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-content h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--gradient-energy);
  color: var(--ocean-deep);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--ocean-deep);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
  color: var(--ocean-deep);
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan-energy);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
}

.form-input::placeholder {
  color: #94a3b8;
}

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

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.gradient-text {
  background: var(--gradient-energy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-orange {
  background: var(--gradient-heat);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }

/* Contact Page Hero Cards */
.contact-hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.15);
  border-color: var(--cyan-energy);
}

.contact-hero-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-energy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-hero-card:hover .contact-hero-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4);
}

.contact-hero-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 16px;
}

.contact-hero-card p {
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-hero-card a {
  color: var(--cyan-energy);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-hero-card a:hover {
  color: var(--burnt-orange);
}

@media screen and (max-width: 768px) {
  .contact-hero-card {
    padding: 32px 24px;
  }
  
  .contact-hero-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-hero-card h3 {
    font-size: 1.25rem;
  }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .fade-in-up {
    animation-duration: 0.4s;
  }
}

/* Contact Page Styles */
.contact-form-card {
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.12);
}

.contact-benefits-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact-benefits-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cyan-energy);
  transform: translateY(-4px);
}

.contact-benefits-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.contact-benefits-card ul {
  list-style: none;
}

.contact-benefits-card li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.5;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--gradient-energy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-deep);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .contact-form-card,
  .contact-benefits-card {
    padding: 32px 24px;
  }
  
  .contact-benefits-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  
  .contact-benefits-card li {
    margin-bottom: 20px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header {
    padding: 12px 0;
  }

  .section-padding {
    padding: 60px 0;
  }

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

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-accent,
  .btn-dark {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 120px 0 80px;
  }

  .cookie-banner {
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
