/* 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', Georgia, serif;
  line-height: 1.6;
  color: #2C1810;
  background-color: #F5F1E8;
  overflow-x: hidden;
}

/* Vintage Retro Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1E3A5F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-shadow: 2px 2px 0px rgba(212, 175, 55, 0.3);
}

h2 {
  font-size: 32px;
  border-bottom: 3px solid #8B7355;
  padding-bottom: 8px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  color: #8B7355;
}

h4 {
  font-size: 18px;
}

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

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

li {
  margin-bottom: 8px;
}

a {
  color: #1E3A5F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, #1E3A5F 0%, #2C4F7A 100%);
  padding: 16px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #D4AF37;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

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

.main-nav a {
  color: #F5F1E8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #D4AF37;
  color: #1E3A5F;
  text-decoration: none;
  border-color: #8B7355;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #D4AF37;
  color: #1E3A5F;
  border: 3px solid #8B7355;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8B7355;
  color: #F5F1E8;
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1E3A5F 0%, #2C4F7A 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.4);
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 4px solid #D4AF37;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #D4AF37;
  color: #1E3A5F;
  border: 3px solid #8B7355;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F5F1E8;
  font-weight: 600;
  font-size: 18px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 2px solid #8B7355;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #D4AF37;
  color: #1E3A5F;
  text-decoration: none;
  transform: translateX(8px);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #D4AF37;
  color: #1E3A5F;
  border-color: #8B7355;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #1E3A5F;
  color: #F5F1E8;
  border-color: #D4AF37;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1E3A5F;
  border-color: #8B7355;
}

.btn-secondary:hover {
  background: #8B7355;
  color: #F5F1E8;
  text-decoration: none;
  transform: translateY(-4px);
}

.btn-link {
  padding: 8px 16px;
  font-size: 14px;
  background: transparent;
  color: #8B7355;
  border-color: #8B7355;
}

.btn-link:hover {
  background: #8B7355;
  color: #F5F1E8;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2C4F7A 50%, #8B7355 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #D4AF37;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 175, 55, 0.05) 10px,
    rgba(212, 175, 55, 0.05) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #F5F1E8;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

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

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

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  border: 2px solid #D4AF37;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #8B7355 0%, #1E3A5F 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 6px solid #D4AF37;
}

.page-hero h1 {
  color: #F5F1E8;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: #F5F1E8;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.trust-badge {
  color: #D4AF37;
  font-weight: 700;
  margin-top: 16px;
}

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #3D2817;
}

/* Services Grid */
.services-overview,
.services-detailed {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.services-overview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 32px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card {
  background: #FFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8B7355;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: #D4AF37;
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
  opacity: 0.3;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #1E3A5F;
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
  font-family: 'Merriweather', serif;
}

/* Service Blocks */
.service-block {
  background: #FFF;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 12px;
  border: 3px solid #8B7355;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-block h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 8px;
}

.service-block ul {
  margin: 16px 0;
}

.service-block .price {
  font-size: 18px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 16px;
  display: block;
}

/* Benefits Section */
.benefits {
  background: #FFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 6px solid #D4AF37;
  border-bottom: 6px solid #D4AF37;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: #F5F1E8;
  border-radius: 8px;
  border: 2px solid #8B7355;
  text-align: center;
  margin-bottom: 20px;
}

.benefit-item h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
}

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

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background: #FFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #D4AF37;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(50% - 24px);
  max-width: 500px;
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  font-size: 72px;
  color: #D4AF37;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Merriweather', serif;
  opacity: 0.3;
}

.testimonial-card p {
  color: #2C1810;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1E3A5F;
  text-align: right;
  font-style: italic;
  margin-bottom: 0;
}

/* CTA Banner & Sections */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #D4AF37 0%, #8B7355 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 12px;
  border: 4px solid #1E3A5F;
}

.cta-banner h2,
.cta-section h2 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

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

.contact-info {
  margin-top: 24px;
  font-weight: 600;
  color: #1E3A5F;
}

.guarantee {
  margin-top: 24px;
  font-weight: 700;
  color: #1E3A5F;
  font-size: 16px;
}

/* Pricing */
.pricing-overview {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.pricing-overview h2 {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-overview > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.price-card {
  background: #FFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8B7355;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  border-color: #D4AF37;
}

.price-card h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
  font-family: 'Merriweather', serif;
}

.price-card ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.price-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #E5E5E5;
  color: #3D2817;
}

.price-card .note {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
  margin-top: 16px;
}

/* Package Deals */
.package-deals {
  background: #F5F1E8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.package-deals h2 {
  text-align: center;
  margin-bottom: 40px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.package-card {
  background: #FFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8B7355;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package-card.featured {
  border-color: #D4AF37;
  border-width: 4px;
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.package-card h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

.package-price {
  font-size: 42px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
  font-family: 'Merriweather', serif;
}

.package-card ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
}

.package-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #3D2817;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

.savings {
  background: #D4AF37;
  color: #1E3A5F;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
}

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

.faq-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

.faq-item {
  background: #FFF;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #8B7355;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #3D2817;
  line-height: 1.8;
}

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

.contact-methods h2 {
  text-align: center;
  margin-bottom: 32px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background: #FFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #D4AF37;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(50% - 24px);
  max-width: 400px;
  min-width: 280px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

.contact-card p {
  color: #3D2817;
  font-size: 16px;
}

.contact-card .note {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
  margin-top: 12px;
}

/* Office Location & Hours */
.office-location,
.office-hours {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 12px;
  border: 3px solid #8B7355;
}

.office-location h2,
.office-hours h2 {
  text-align: center;
  margin-bottom: 24px;
}

.address {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 32px;
}

.directions h3 {
  color: #8B7355;
  margin-bottom: 16px;
}

.directions p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.hours-table {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.hours-table p {
  padding: 12px;
  border-bottom: 1px solid #E5E5E5;
  font-size: 16px;
}

/* Company Story & Values */
.company-story,
.mission-values {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.company-story h2,
.mission-values h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
}

.mission-statement {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #1E3A5F;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 24px;
  background: #F5F1E8;
  border-radius: 8px;
  border: 2px solid #D4AF37;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: #FFF;
  border-radius: 8px;
  border: 2px solid #8B7355;
  text-align: center;
  margin-bottom: 20px;
}

.value-item h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
}

/* Statistics */
.statistics {
  background: linear-gradient(135deg, #1E3A5F 0%, #8B7355 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 12px;
}

.statistics h2 {
  text-align: center;
  color: #F5F1E8;
  margin-bottom: 40px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: rgba(245, 241, 232, 0.1);
  border-radius: 8px;
  border: 2px solid #D4AF37;
  text-align: center;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}

.stat-item p:last-child {
  color: #F5F1E8;
  font-size: 16px;
  margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.last-updated {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

/* Thank You Pages */
.thank-you-hero {
  background: linear-gradient(135deg, #D4AF37 0%, #8B7355 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 12px;
  border: 4px solid #1E3A5F;
}

.thank-you-content h1 {
  color: #1E3A5F;
  margin-bottom: 24px;
}

.thank-you-content p {
  color: #2C1810;
  font-size: 18px;
  margin-bottom: 16px;
}

.next-steps {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: #FFF;
  border-radius: 8px;
  border: 3px solid #D4AF37;
  text-align: center;
  margin-bottom: 20px;
}

.step-item h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
  font-size: 20px;
}

.helpful-resources {
  background: #F5F1E8;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.helpful-resources h2 {
  margin-bottom: 16px;
}

.helpful-resources > p {
  margin-bottom: 32px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.resource-link {
  padding: 16px 24px;
  background: #FFF;
  color: #1E3A5F;
  border: 2px solid #8B7355;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: #8B7355;
  color: #F5F1E8;
  text-decoration: none;
  transform: translateY(-4px);
}

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

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

.action-link {
  padding: 16px 24px;
  background: #D4AF37;
  color: #1E3A5F;
  border: 2px solid #8B7355;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-link:hover {
  background: #1E3A5F;
  color: #F5F1E8;
  text-decoration: none;
  transform: translateY(-4px);
}

.trust-badges {
  background: #F5F1E8;
  padding: 60px 20px;
}

.trust-badges h2 {
  text-align: center;
  margin-bottom: 40px;
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.badge-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 20px;
  background: #FFF;
  border-radius: 8px;
  border: 2px solid #D4AF37;
  text-align: center;
}

.badge-item p {
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0;
}

.security-note {
  text-align: center;
  font-style: italic;
  color: #8B7355;
  margin-top: 32px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1E3A5F 0%, #2C4F7A 100%);
  color: #F5F1E8;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 6px solid #D4AF37;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: #D4AF37;
  margin-bottom: 16px;
}

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

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

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

.footer-nav a:hover {
  color: #D4AF37;
  text-decoration: none;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid #8B7355;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #F5F1E8;
  font-size: 14px;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E3A5F 0%, #2C4F7A 100%);
  color: #F5F1E8;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  border-top: 4px solid #D4AF37;
  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;
  justify-content: space-between;
  gap: 20px;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border: 2px solid #D4AF37;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #D4AF37;
  color: #1E3A5F;
}

.cookie-accept:hover {
  background: #8B7355;
  color: #F5F1E8;
}

.cookie-reject {
  background: transparent;
  color: #F5F1E8;
}

.cookie-reject:hover {
  background: rgba(245, 241, 232, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #F5F1E8;
}

.cookie-settings:hover {
  background: rgba(245, 241, 232, 0.1);
}

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

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

.cookie-modal-content {
  background: #F5F1E8;
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #D4AF37;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #FFF;
  border-radius: 8px;
  border: 2px solid #8B7355;
}

.cookie-category h3 {
  color: #1E3A5F;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #3D2817;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #3D2817;
  font-weight: 600;
  cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-indicators {
    flex-direction: column;
  }

  .service-card,
  .benefit-item,
  .value-item,
  .stat-item,
  .step-item,
  .price-card,
  .package-card {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .contact-card {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .services-grid,
  .benefits-grid,
  .values-grid,
  .stats-grid,
  .steps-grid,
  .pricing-grid,
  .packages-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section {
    padding: 32px 16px;
  }

  .service-card,
  .price-card,
  .package-card {
    padding: 24px;
  }

  .cookie-modal-content {
    padding: 24px;
  }
}