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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FEFAF5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

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

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

/* Header */
header {
  background-color: #FFF;
  box-shadow: 0 2px 8px rgba(199, 75, 62, 0.1);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 500;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #FEF0E9;
  color: #C74B3E;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: block;
  background-color: #C74B3E;
  color: #FFF;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(199, 75, 62, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background-color: #FFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: 2px solid #C74B3E;
  color: #C74B3E;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  background-color: #FEF0E9;
  border-radius: 12px;
  font-weight: 600;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #C74B3E;
  color: #FFF;
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FEF0E9 0%, #F5E6D8 100%);
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

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

.hero h1 {
  font-size: 36px;
  color: #C74B3E;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.trust-indicators {
  color: #8B6F47;
  font-weight: 600;
  font-size: 14px;
}

/* Hero Page */
.hero-page {
  background: linear-gradient(135deg, #FEF0E9 0%, #F5E6D8 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.breadcrumbs {
  font-size: 14px;
  color: #8B6F47;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #C74B3E;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

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

.btn-primary {
  background-color: #C74B3E;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(199, 75, 62, 0.3);
}

.btn-primary:hover {
  background-color: #A63D31;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(199, 75, 62, 0.4);
}

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

.btn-secondary:hover {
  background-color: #C74B3E;
  color: #FFF;
  transform: translateY(-3px);
}

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

.section-subtitle {
  text-align: center;
  color: #8B6F47;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Value Proposition */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFF;
  margin-bottom: 60px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #C74B3E;
}

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

.benefit-card {
  background-color: #FEF0E9;
  padding: 30px;
  border-radius: 16px;
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(199, 75, 62, 0.1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 75, 62, 0.2);
}

.benefit-card h3 {
  color: #C74B3E;
  margin-bottom: 12px;
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
  background-color: #F9F9F9;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  color: #C74B3E;
  margin-bottom: 20px;
}

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

.service-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 100%;
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 75, 62, 0.15);
}

.service-card h3 {
  color: #C74B3E;
}

.service-card .price {
  font-weight: 700;
  color: #8B6F47;
  font-size: 18px;
  margin-top: auto;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Services Detail Page */
.services-detail {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.service-block {
  background-color: #FFF;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-block h2 {
  color: #C74B3E;
  margin-bottom: 12px;
}

.service-block .tagline {
  font-size: 18px;
  color: #8B6F47;
  font-style: italic;
  margin-bottom: 20px;
}

.service-block .price {
  font-size: 24px;
  font-weight: 700;
  color: #C74B3E;
  margin: 20px 0;
}

.service-block ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-block ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #2C3E50;
}

.service-block .btn {
  margin-top: 24px;
}

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

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

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

.package-card {
  background-color: #FFF;
  padding: 40px;
  border-radius: 16px;
  flex: 1 1 100%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(199, 75, 62, 0.15);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(199, 75, 62, 0.25);
}

.package-card h3 {
  color: #C74B3E;
  font-size: 24px;
  margin-bottom: 16px;
}

.package-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #2C3E50;
  margin: 20px 0;
}

.package-card .savings {
  color: #8B6F47;
  font-weight: 600;
  font-size: 14px;
}

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

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

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

.testimonial-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 100%;
  min-width: 280px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
}

.testimonial-card .author {
  font-weight: 700;
  color: #C74B3E;
  font-size: 14px;
  margin-top: auto;
}

.testimonials .stats {
  text-align: center;
  color: #8B6F47;
  font-weight: 600;
  font-size: 16px;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C74B3E 0%, #A63D31 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #FFF;
  font-size: 32px;
  margin-bottom: 20px;
}

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

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.cta-section .btn-primary {
  background-color: #FFF;
  color: #C74B3E;
}

.cta-section .btn-primary:hover {
  background-color: #FEF0E9;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFF;
  border-color: #FFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFF;
  color: #C74B3E;
}

.urgency {
  color: #FEF0E9;
  font-size: 14px;
  font-weight: 600;
}

.social-proof {
  color: #FEF0E9;
  font-size: 14px;
  font-weight: 600;
}

/* Story Section */
.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.text-section p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

/* Mission Section */
.mission {
  padding: 60px 20px;
  background-color: #FEF0E9;
  margin-bottom: 60px;
}

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

.mission-item {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 100%;
  min-width: 280px;
  box-shadow: 0 2px 12px rgba(199, 75, 62, 0.1);
}

.mission-item h3 {
  color: #C74B3E;
  margin-bottom: 16px;
}

.values {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(199, 75, 62, 0.1);
}

.values h3 {
  color: #C74B3E;
  margin-bottom: 20px;
}

.values ul {
  padding-left: 20px;
}

.values ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #2C3E50;
  font-size: 16px;
}

/* Achievements/Stats Section */
.achievements,
.stats-section {
  padding: 60px 20px;
  background-color: #F9F9F9;
  margin-bottom: 60px;
}

.achievements h2,
.stats-section h2 {
  text-align: center;
  color: #C74B3E;
  margin-bottom: 40px;
}

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

.stat-item {
  background-color: #FFF;
  padding: 40px;
  border-radius: 16px;
  flex: 1 1 100%;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(199, 75, 62, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 75, 62, 0.2);
}

.stat-item h3 {
  font-size: 48px;
  color: #C74B3E;
  margin-bottom: 8px;
}

.stat-item p {
  color: #2C3E50;
  font-weight: 600;
}

/* Portfolio Cases */
.portfolio-cases {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.case-study {
  background-color: #FFF;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.case-study h2 {
  color: #C74B3E;
  margin-bottom: 8px;
}

.case-study .location {
  color: #8B6F47;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.case-content p {
  margin-bottom: 16px;
}

.case-content strong {
  color: #C74B3E;
  font-weight: 700;
}

.case-content .testimonial {
  font-style: italic;
  color: #2C3E50;
  background-color: #FEF0E9;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #C74B3E;
  margin-top: 20px;
}

/* Blog Grid */
.blog-featured {
  padding: 60px 20px;
  background-color: #FEF0E9;
  margin-bottom: 60px;
}

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

.featured-article h2 {
  color: #C74B3E;
  margin-bottom: 20px;
}

.meta {
  color: #8B6F47;
  font-size: 14px;
  font-weight: 600;
}

.blog-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.blog-grid h2 {
  text-align: center;
  color: #C74B3E;
  margin-bottom: 40px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.article-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 100%;
  min-width: 280px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 75, 62, 0.15);
}

.article-card h3 {
  color: #C74B3E;
}

.article-card .meta {
  margin-top: auto;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #C74B3E 0%, #A63D31 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.newsletter h2 {
  text-align: center;
  color: #FFF;
  margin-bottom: 20px;
}

.newsletter p {
  text-align: center;
  color: #FEF0E9;
  margin-bottom: 32px;
}

.benefits {
  max-width: 600px;
  margin: 0 auto 32px;
}

.benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits ul li {
  color: #FFF;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}

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

.privacy {
  text-align: center;
  color: #FEF0E9;
  font-size: 14px;
}

/* Contact Page */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.option-card {
  background-color: #FEF0E9;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(199, 75, 62, 0.1);
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(199, 75, 62, 0.2);
}

.option-card h3 {
  color: #C74B3E;
  margin-bottom: 16px;
}

.option-card .value {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

.option-card .note {
  color: #8B6F47;
  font-size: 14px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  background-color: #F9F9F9;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  color: #C74B3E;
  margin-bottom: 20px;
}

.contact-form-section > p {
  text-align: center;
  color: #8B6F47;
  margin-bottom: 32px;
}

.form-note {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FEF0E9;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #C74B3E;
}

.form-note strong {
  color: #C74B3E;
}

.form-note ul {
  margin-top: 16px;
  padding-left: 20px;
}

.form-note ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #2C3E50;
}

/* Consultation Info */
.consultation-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.consultation-info h2 {
  text-align: center;
  color: #C74B3E;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  background-color: #FEF0E9;
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 100%;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(199, 75, 62, 0.1);
}

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

.guarantee {
  text-align: center;
  color: #8B6F47;
  font-weight: 600;
  font-style: italic;
  background-color: #FEF0E9;
  padding: 20px;
  border-radius: 12px;
}

/* Office Info */
.office-info {
  padding: 60px 20px;
  background-color: #F9F9F9;
  margin-bottom: 60px;
}

.office-info h2 {
  text-align: center;
  color: #C74B3E;
  margin-bottom: 32px;
}

.office-details {
  max-width: 700px;
  margin: 0 auto;
}

.office-details p {
  margin-bottom: 16px;
  font-size: 16px;
}

.office-details strong {
  color: #C74B3E;
}

.office-details .note {
  color: #8B6F47;
  font-size: 14px;
  font-style: italic;
}

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

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #FFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
  color: #2C3E50;
  margin-bottom: 0;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .text-section {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: #C74B3E;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content a {
  color: #C74B3E;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

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

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

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

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.response-time {
  text-align: center;
  color: #8B6F47;
  font-weight: 600;
  font-size: 14px;
}

.while-waiting {
  padding: 60px 20px;
  background-color: #F9F9F9;
  margin-bottom: 60px;
}

.while-waiting h2 {
  text-align: center;
  color: #C74B3E;
  margin-bottom: 12px;
}

.while-waiting > p {
  text-align: center;
  color: #8B6F47;
  margin-bottom: 40px;
}

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

.action-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 100%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.action-card h3 {
  color: #C74B3E;
}

.urgent-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #C74B3E 0%, #A63D31 100%);
  margin-bottom: 60px;
  border-radius: 30px;
  text-align: center;
}

.urgent-contact h2 {
  color: #FFF;
  margin-bottom: 20px;
}

.urgent-contact .headline {
  color: #FEF0E9;
  font-size: 18px;
  margin-bottom: 24px;
}

.urgent-contact .phone {
  font-size: 28px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 20px;
}

.urgent-contact .phone a {
  color: #FFF;
}

.urgent-contact .phone a:hover {
  text-decoration: underline;
}

.urgent-contact p {
  color: #FEF0E9;
  margin-bottom: 12px;
}

.urgent-contact a {
  color: #FFF;
  font-weight: 600;
}

.urgent-contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #2C3E50;
  color: #E8D5B7;
  padding: 60px 20px 20px;
}

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

.footer-column {
  flex: 1 1 100%;
  min-width: 200px;
}

.footer-column h4 {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 213, 183, 0.2);
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

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

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

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept-all {
  background-color: #C74B3E;
  color: #FFF;
}

.cookie-accept-all:hover {
  background-color: #A63D31;
  transform: translateY(-2px);
}

.cookie-reject-all {
  background-color: transparent;
  color: #E8D5B7;
  border: 2px solid #E8D5B7;
}

.cookie-reject-all:hover {
  background-color: #E8D5B7;
  color: #2C3E50;
}

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

.cookie-settings:hover {
  background-color: #E8D5B7;
  color: #2C3E50;
}

/* Cookie 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: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #FEF0E9;
  color: #C74B3E;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #FEF0E9;
  border-radius: 12px;
}

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

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

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

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

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

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

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

.cookie-modal-actions button {
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save-preferences {
  background-color: #C74B3E;
  color: #FFF;
}

.cookie-save-preferences:hover {
  background-color: #A63D31;
  transform: translateY(-2px);
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

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

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

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

  .main-nav {
    display: flex;
    gap: 8px;
  }

  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .articles-grid {
    justify-content: space-between;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }

  .mission-grid {
    justify-content: space-between;
  }

  .mission-item {
    flex: 1 1 calc(50% - 12px);
  }

  .stats-grid {
    justify-content: space-between;
  }

  .stat-item {
    flex: 1 1 calc(25% - 18px);
  }

  .steps {
    justify-content: space-between;
  }

  .step {
    flex: 1 1 calc(20% - 20px);
  }

  .footer-content {
    justify-content: space-between;
  }

  .footer-column {
    flex: 1 1 calc(33.333% - 27px);
  }

  .cookie-banner-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner p {
    text-align: left;
    flex: 1;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
  .benefit-card,
  .article-card {
    flex: 1 1 calc(25% - 18px);
  }

  .service-card,
  .testimonial-card {
    flex: 1 1 calc(33.333% - 16px);
  }

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

  .section {
    padding: 60px 20px;
  }
}

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

  body {
    background-color: #FFF;
    color: #000;
  }

  .hero,
  .hero-page {
    background: none;
    border: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #C74B3E;
  outline-offset: 2px;
}

/* Loading Animation for Images */
img {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}