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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A1A2E;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header and Navigation */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(26, 26, 46, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-nav a img {
  height: 50px;
  width: auto;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 14px;
  color: #1A1A2E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #E94560;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #E94560;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #E94560;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #d63850;
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #1A1A2E;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #FFFFFF;
  background-color: #E94560;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #d63850;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F5F5F5;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(233, 69, 96, 0.2);
  border-left-color: #E94560;
  transform: translateX(8px);
}

/* Hero Sections */
.hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d2d4a 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .tagline,
.hero .subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F5F5F5;
  font-weight: 300;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* 404 Hero */
.hero-404 {
  background: linear-gradient(135deg, #E94560 0%, #d63850 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
}

.error-display h1 {
  font-size: 120px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.error-display h2 {
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.error-display p {
  font-size: 18px;
  color: #F5F5F5;
  max-width: 600px;
  margin: 0 auto;
}

/* Thank You Hero */
.hero-thank-you {
  background: linear-gradient(135deg, #E94560 0%, #d63850 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
}

.success-message h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 16px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #E94560;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover {
  background-color: #d63850;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

.btn-secondary:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A1A2E;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E94560;
  border-radius: 2px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #1A1A2E;
  margin-bottom: 20px;
}

/* Grid Layouts */
.services-grid,
.values-grid,
.blog-grid,
.article-grid,
.project-grid,
.product-grid,
.category-grid,
.info-grid,
.package-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Cards */
.service-card,
.service-card-detailed,
.value-card,
.blog-card,
.article-card,
.project-card,
.product-card,
.category-card,
.info-card,
.package-card,
.suggestion-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover,
.service-card-detailed:hover,
.value-card:hover,
.blog-card:hover,
.article-card:hover,
.project-card:hover,
.product-card:hover,
.category-card:hover,
.info-card:hover,
.package-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.2);
  border-color: #E94560;
}

.service-card h3,
.service-card-detailed h3,
.value-card h3,
.blog-card h3,
.article-card h3,
.project-card h3,
.product-card h3,
.category-card h3,
.info-card h3,
.package-card h3,
.suggestion-card h3 {
  color: #1A1A2E;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.service-card-detailed p,
.value-card p,
.blog-card p,
.article-card p,
.project-card p,
.product-card p,
.category-card p,
.info-card p,
.package-card p,
.suggestion-card p {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E94560;
  margin: 16px 0;
}

.savings {
  font-size: 14px;
  font-weight: 600;
  color: #E94560;
  background-color: rgba(233, 69, 96, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
}

.meta {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: auto;
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #F5F5F5;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-left: 5px solid #E94560;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  font-style: normal;
  color: #1A1A2E;
  margin-top: 12px;
  font-size: 14px;
}

/* Featured Cards */
.featured-card {
  background: linear-gradient(135deg, #E94560 0%, #d63850 100%);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.3);
}

.featured-card h2 {
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 16px;
}

.featured-card h2::after {
  display: none;
}

.featured-card p {
  color: #FFFFFF;
  font-size: 18px;
}

/* Process Steps */
.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step,
.step-card {
  background-color: #F5F5F5;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(233, 69, 96, 0.15);
}

.step h3,
.step-card h3 {
  color: #E94560;
  font-size: 24px;
  margin-bottom: 16px;
}

.step p,
.step-card p {
  color: #1A1A2E;
  font-size: 16px;
}

/* Tags */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.tag {
  background-color: #F5F5F5;
  color: #1A1A2E;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tag:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

/* Contact and Support */
.contact-details,
.support-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  background-color: #F5F5F5;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(26, 26, 46, 0.08);
}

.contact-block h3 {
  color: #E94560;
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-block p {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.8;
}

/* Popular Links & Resource Links */
.popular-links,
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.link-card,
.resource-card {
  background-color: #E94560;
  color: #FFFFFF;
  padding: 24px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
  flex: 1 1 calc(25% - 16px);
  min-width: 200px;
  text-align: center;
}

.link-card:hover,
.resource-card:hover {
  background-color: #d63850;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.link-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* CTA Sections */
.cta-banner,
.cta-section,
.booking-cta {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d2d4a 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  border-radius: 30px;
  text-align: center;
  margin-top: 60px;
}

.cta-banner h2,
.cta-section h2,
.booking-cta h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner h2::after,
.cta-section h2::after,
.booking-cta h2::after {
  background-color: #E94560;
}

.cta-banner p,
.cta-section p,
.booking-cta p {
  color: #F5F5F5;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-link {
  color: #E94560;
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.cta-link:hover {
  color: #d63850;
  text-decoration: none;
}

/* Form Placeholder */
.form-placeholder {
  background-color: #F5F5F5;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
}

.form-placeholder p {
  color: #1A1A2E;
  font-size: 16px;
  margin-bottom: 16px;
}

.form-placeholder em {
  color: #666;
  font-size: 14px;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #1A1A2E;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content h2::after {
  display: none;
}

.legal-content p {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.legal-content strong {
  color: #E94560;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #1A1A2E;
  color: #F5F5F5;
  padding: 60px 20px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-section img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #E94560;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #F5F5F5;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #F5F5F5;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #E94560;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #F5F5F5;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background-color: #1A1A2E;
  color: #F5F5F5;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: bottom 0.4s ease;
}

.cookie-banner.show {
  bottom: 0;
}

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

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

.cookie-banner-text p {
  color: #F5F5F5;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-banner button {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

#accept-cookies {
  background-color: #E94560;
  color: #FFFFFF;
}

#accept-cookies:hover {
  background-color: #d63850;
}

#reject-cookies {
  background-color: transparent;
  color: #F5F5F5;
  border: 2px solid #F5F5F5;
}

#reject-cookies:hover {
  background-color: rgba(245, 245, 245, 0.1);
}

#cookie-settings {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

#cookie-settings:hover {
  background-color: rgba(233, 69, 96, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 46, 0.9);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-content h2 {
  color: #1A1A2E;
  margin-bottom: 24px;
}

.cookie-preference {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F5F5F5;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-preference-text h3 {
  color: #1A1A2E;
  font-size: 18px;
  margin-bottom: 4px;
}

.cookie-preference-text p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #E94560;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(30px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 32px;
}

#save-cookie-preferences,
#close-cookie-modal {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background-color: #E94560;
  color: #FFFFFF;
}

#save-cookie-preferences:hover {
  background-color: #d63850;
}

#close-cookie-modal {
  background-color: transparent;
  color: #1A1A2E;
  border: 2px solid #1A1A2E;
}

#close-cookie-modal:hover {
  background-color: #F5F5F5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .service-card,
  .service-card-detailed,
  .value-card,
  .blog-card,
  .article-card,
  .project-card,
  .product-card,
  .category-card,
  .info-card,
  .package-card,
  .suggestion-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .tagline,
  .hero .subtitle {
    font-size: 18px;
  }
  
  .error-display h1 {
    font-size: 80px;
  }
  
  /* Sections */
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .service-card,
  .service-card-detailed,
  .value-card,
  .blog-card,
  .article-card,
  .project-card,
  .product-card,
  .category-card,
  .info-card,
  .package-card,
  .suggestion-card {
    flex: 1 1 100%;
    padding: 24px;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    padding: 24px;
  }
  
  .step,
  .step-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  /* CTA */
  .cta-banner,
  .cta-section,
  .booking-cta {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Featured Card */
  .featured-card {
    padding: 32px;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-banner button {
    flex: 1 1 auto;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-preference {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .error-display h1 {
    font-size: 60px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .service-card-detailed,
  .value-card {
    padding: 20px;
  }
  
  .featured-card {
    padding: 24px;
  }
  
  .form-placeholder {
    padding: 32px 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 32px;
}

/* Accessibility */
:focus {
  outline: 2px solid #E94560;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E94560;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}