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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D5F4B;
  margin-bottom: 24px;
}

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

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #555;
}

ul, ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #555;
}

blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #2D5F4B;
  padding: 24px 32px;
  border-left: 4px solid #C87941;
  background-color: #F4E4D7;
  margin: 32px 0;
}

a {
  color: #2D5F4B;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #C87941;
}

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

/* Header */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #F4E4D7;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  height: 60px;
  width: auto;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2D5F4B;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #C87941;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #2D5F4B;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 95, 75, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2D5F4B;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #C87941;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2D5F4B;
  padding: 12px 0;
  border-bottom: 1px solid #F4E4D7;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #C87941;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F4E4D7 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #2D5F4B;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-indicator {
  font-size: 14px;
  color: #2D5F4B;
  font-weight: 500;
  margin-top: 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #2D5F4B;
  color: #FFFFFF;
  border-color: #2D5F4B;
}

.btn-primary:hover {
  background-color: #1F4435;
  border-color: #1F4435;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 75, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5F4B;
  border-color: #2D5F4B;
}

.btn-secondary:hover {
  background-color: #2D5F4B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 75, 0.2);
}

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

.introduction,
.services-intro,
.process-intro,
.portfolio-intro,
.testimonials-intro,
.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* USP List */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.usp-list li {
  background-color: #F4E4D7;
  color: #2D5F4B;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 14px;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid #F4E4D7;
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(45, 95, 75, 0.15);
  transform: translateY(-4px);
  border-color: #C87941;
}

.service-card h3 {
  color: #2D5F4B;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p {
  color: #555;
  margin-bottom: 16px;
}

.service-card .price {
  color: #C87941;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
}

/* Service Detail */
.service-detail {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 20px;
}

.service-detail .tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: #2D5F4B;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #C87941;
  margin-bottom: 24px;
}

.service-detail ul {
  background-color: #F4E4D7;
  padding: 24px 24px 24px 48px;
  border-radius: 8px;
  margin: 24px 0;
}

.service-detail ul li {
  color: #2D5F4B;
  margin-bottom: 12px;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.feature {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 24px;
  margin-bottom: 20px;
}

.feature h3 {
  color: #2D5F4B;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature p {
  color: #555;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #F4E4D7;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
}

.stat .number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #C87941;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #2D5F4B;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #FFFFFF;
  border: 1px solid #F4E4D7;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card .quote {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2D5F4B;
  font-size: 14px;
  margin-bottom: 0;
}

.testimonial-card .rating {
  color: #C87941;
  font-size: 18px;
  margin-bottom: 8px;
}

.featured-testimonial {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px 20px;
}

.featured-testimonial h2 {
  color: #2D5F4B;
  margin-bottom: 16px;
}

.featured-testimonial .rating {
  color: #C87941;
  font-size: 20px;
  margin-bottom: 24px;
}

/* Story Section */
.story,
.philosophy,
.expertise,
.team,
.commitment {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 20px;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.value {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 24px;
  background-color: #F4E4D7;
  border-radius: 8px;
  margin-bottom: 20px;
}

.value h3 {
  color: #2D5F4B;
  margin-bottom: 12px;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #F4E4D7;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.team-member h3 {
  color: #2D5F4B;
  margin-bottom: 16px;
}

/* Process Steps */
.process-step {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 20px;
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  color: #F4E4D7;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step .tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #C87941;
  margin-bottom: 16px;
}

/* Portfolio */
.featured-wedding {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px 20px;
  background-color: #F4E4D7;
  border-radius: 8px;
}

.featured-wedding h2 {
  color: #2D5F4B;
  margin-bottom: 16px;
}

.featured-wedding ul {
  background-color: #FFFFFF;
  padding: 24px 24px 24px 48px;
  border-radius: 8px;
  margin: 24px 0;
}

.location-portfolio {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.location-portfolio ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.location-portfolio ul li {
  background-color: #F4E4D7;
  color: #2D5F4B;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
}

/* Packages */
.packages {
  padding: 60px 20px;
  background-color: #F4E4D7;
  margin-bottom: 60px;
}

.packages h2 {
  text-align: center;
  margin-bottom: 48px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.package-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  border: 2px solid #C87941;
  margin-bottom: 20px;
}

.package-card h3 {
  color: #2D5F4B;
  margin-bottom: 16px;
}

.package-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #C87941;
  margin-top: 24px;
}

/* Contact */
.contact-info {
  text-align: center;
  margin: 32px 0;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.contact-info-item {
  flex: 1 1 300px;
  padding: 32px;
  background-color: #F4E4D7;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-info-item h3 {
  color: #2D5F4B;
  margin-bottom: 16px;
}

.contact-info-item .note {
  font-size: 14px;
  color: #C87941;
  margin-top: 12px;
}

.consultation-booking {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 20px;
}

.consultation-types {
  background-color: #F4E4D7;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.office-visit {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2D5F4B 0%, #1F4435 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-banner p {
  color: #F4E4D7;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.trust-text {
  font-size: 14px;
  color: #F4E4D7;
  margin-top: 16px;
}

/* Review Platforms */
.review-platforms {
  padding: 60px 20px;
  background-color: #F4E4D7;
  margin-bottom: 60px;
}

.review-platforms h2 {
  text-align: center;
  margin-bottom: 48px;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.platform {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #C87941;
  margin-bottom: 20px;
}

.platform h3 {
  color: #2D5F4B;
  margin-bottom: 16px;
}

.platform .rating {
  font-size: 24px;
  font-weight: 700;
  color: #C87941;
  margin-bottom: 8px;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F4E4D7 0%, #FFFFFF 100%);
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D5F4B;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.confirmation-details,
.next-steps,
.contact-reminder,
.social-proof {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px 20px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.suggestion {
  flex: 1 1 300px;
  padding: 32px;
  background-color: #F4E4D7;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.suggestion h3 {
  color: #2D5F4B;
  margin-bottom: 16px;
}

.return-navigation {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

/* Legal Pages */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
  margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 32px;
}

/* Footer */
footer {
  background-color: #2D5F4B;
  color: #F4E4D7;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #F4E4D7;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

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

.footer-nav a {
  color: #F4E4D7;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C87941;
}

.copyright {
  text-align: center;
  color: #F4E4D7;
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 228, 215, 0.2);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #2D5F4B;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

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

.cookie-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #2D5F4B;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #1F4435;
}

.cookie-btn-reject {
  background-color: #FFFFFF;
  color: #2D5F4B;
  border: 2px solid #2D5F4B;
}

.cookie-btn-reject:hover {
  background-color: #F4E4D7;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #C87941;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #2D5F4B;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2D5F4B;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F4E4D7;
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category h3 {
  color: #2D5F4B;
  margin-bottom: 0;
  font-size: 18px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #CCC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

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

/* Highlight */
.highlight {
  background-color: #F4E4D7;
  color: #2D5F4B;
  padding: 16px 24px;
  border-radius: 4px;
  font-weight: 500;
  margin: 24px 0;
  border-left: 4px solid #C87941;
}

/* Note */
.note {
  font-size: 14px;
  font-style: italic;
  color: #C87941;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .service-card,
  .feature,
  .value,
  .team-member {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
  }
  
  /* Grids */
  .services-grid,
  .features-grid,
  .stats-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .packages-grid,
  .contact-info-grid,
  .suggestions-grid,
  .platforms-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .stat,
  .testimonial-card,
  .value,
  .team-member,
  .package-card,
  .contact-info-item,
  .suggestion,
  .platform {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-links {
    flex-direction: column;
  }
  
  .nav-links .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .step-number {
    font-size: 56px;
  }
  
  .cookie-modal-content {
    padding: 20px;
  }
}

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

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

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}