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

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

body {
  font-family: 'Nunito', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C1810;
  background-color: #FFF5ED;
  overflow-x: hidden;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.4;
  color: #2C1810;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  color: #4A3428;
}

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

a:hover {
  color: #8B4409;
}

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

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

/* Header */
.site-header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #F4E6D8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(184, 90, 15, 0.08);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #4A3428;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #B85A0F;
  background-color: #FFF5ED;
}

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

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

.mobile-menu-close:hover {
  background-color: #FFF5ED;
  color: #B85A0F;
}

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  color: #4A3428;
  border-bottom: 1px solid #F4E6D8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #B85A0F;
  padding-left: 10px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFF5ED 0%, #F4E6D8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #E8D4C0;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #2C1810;
}

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

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

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

.btn-primary:hover {
  background-color: #8B4409;
  border-color: #8B4409;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 90, 15, 0.3);
}

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

.btn-secondary:hover {
  background-color: #B85A0F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 90, 15, 0.2);
}

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

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

.benefits {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C1810;
}

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

.benefit-card {
  background-color: #FFF5ED;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  border: 2px solid #F4E6D8;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(184, 90, 15, 0.15);
  border-color: #E8D4C0;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #B85A0F;
}

.benefit-card p {
  font-size: 15px;
  color: #4A3428;
}

/* Featured Services */
.featured-services {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

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

.service-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 90, 15, 0.15);
  border-color: #B85A0F;
}

.service-card h3 {
  font-size: 22px;
  color: #2C1810;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #4A3428;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #B85A0F;
  margin-top: 8px;
}

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

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

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

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

.testimonial-card {
  background-color: #FFF5ED;
  padding: 32px 28px;
  border-radius: 8px;
  border-left: 4px solid #B85A0F;
  flex: 1 1 400px;
  max-width: 560px;
  box-shadow: 0 4px 12px rgba(184, 90, 15, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

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

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

.rating-info {
  text-align: center;
  margin-top: 24px;
}

.rating-info p {
  font-size: 18px;
  color: #4A3428;
}

.rating-info strong {
  color: #B85A0F;
  font-size: 20px;
}

/* Trust Indicators */
.trust-indicators {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5ED 0%, #F4E6D8 100%);
}

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

.trust-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 260px;
  padding: 24px;
}

.trust-item h3 {
  font-size: 36px;
  color: #B85A0F;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 16px;
  color: #4A3428;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
  border-top: 3px solid #F4E6D8;
  border-bottom: 3px solid #F4E6D8;
}

.cta-content h2 {
  margin-bottom: 16px;
  color: #2C1810;
}

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

.contact-info {
  font-size: 20px;
  font-weight: 600;
  color: #B85A0F;
  margin-top: 24px;
}

/* Footer */
.site-footer {
  background-color: #2C1810;
  color: #E8D4C0;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

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

.footer-section p {
  font-size: 14px;
  color: #C4B5A8;
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #4A3428;
}

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

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FFF5ED 0%, #F4E6D8 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 3px solid #E8D4C0;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #4A3428;
}

.breadcrumb a {
  color: #B85A0F;
}

.page-subtitle {
  font-size: 18px;
  color: #4A3428;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Product Grid Section */
.product-grid-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.product-card {
  background-color: #FFF5ED;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  flex: 1 1 300px;
  max-width: 360px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 90, 15, 0.15);
  border-color: #B85A0F;
}

.product-card h3 {
  font-size: 20px;
  color: #2C1810;
}

.product-card p {
  font-size: 15px;
  color: #4A3428;
  flex-grow: 1;
}

.product-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #B85A0F;
  margin-top: 8px;
}

/* Product Features */
.product-features {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

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

.feature-item {
  background-color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(184, 90, 15, 0.12);
  border-color: #E8D4C0;
}

.feature-item h3 {
  font-size: 18px;
  color: #B85A0F;
}

.feature-item p {
  font-size: 15px;
  color: #4A3428;
}

/* Help Section */
.help-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.help-content h2 {
  margin-bottom: 16px;
}

.help-content p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-phone {
  font-size: 18px;
  font-weight: 600;
  color: #B85A0F;
  margin-top: 24px;
}

/* Category Products */
.category-products {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

/* Tips Section */
.tips-section {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

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

.tip-card {
  background-color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  flex: 1 1 260px;
  max-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(184, 90, 15, 0.12);
  border-color: #E8D4C0;
}

.tip-card h3 {
  font-size: 18px;
  color: #B85A0F;
  margin-bottom: 12px;
}

.tip-card p {
  font-size: 15px;
  color: #4A3428;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 20px;
  background: linear-gradient(135deg, #B85A0F 0%, #8B4409 100%);
  text-align: center;
}

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

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

/* Benefits Section */
.benefits-section {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

/* Story Section */
.story-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.text-section h2 {
  margin-bottom: 24px;
  color: #2C1810;
}

.text-section p {
  font-size: 16px;
  color: #4A3428;
  margin-bottom: 20px;
  line-height: 1.9;
}

/* Mission Section */
.mission-section {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

.mission-statement {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.mission-statement p {
  font-size: 20px;
  color: #4A3428;
  font-style: italic;
}

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

.value-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(184, 90, 15, 0.15);
  border-color: #B85A0F;
}

.value-card h3 {
  font-size: 20px;
  color: #B85A0F;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #4A3428;
}

/* Why Us Section */
.why-us-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.reason-item {
  background-color: #FFF5ED;
  padding: 20px 24px;
  border-radius: 8px;
  border-left: 4px solid #B85A0F;
  flex: 1 1 260px;
  max-width: 420px;
  font-size: 16px;
  color: #4A3428;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.reason-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(184, 90, 15, 0.1);
}

/* Stats Section */
.stats-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5ED 0%, #F4E6D8 100%);
}

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

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

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

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

.stat-item p {
  font-size: 16px;
  color: #4A3428;
}

/* Contact Info Section */
.contact-info-section {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

.contact-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(184, 90, 15, 0.15);
  border-color: #B85A0F;
}

.contact-card h3 {
  font-size: 18px;
  color: #B85A0F;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  color: #4A3428;
}

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

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

.form-wrapper h2 {
  margin-bottom: 16px;
}

.form-wrapper > p {
  font-size: 16px;
  color: #4A3428;
  margin-bottom: 32px;
}

.form-container {
  background-color: #FFF5ED;
  padding: 40px 32px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  text-align: left;
}

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

.form-field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #4A3428;
  margin-bottom: 8px;
}

.input-placeholder,
.textarea-placeholder {
  background-color: #FFFFFF;
  border: 2px solid #E8D4C0;
  border-radius: 6px;
  height: 48px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.input-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #B85A0F;
}

.textarea-placeholder {
  height: 140px;
}

.checkbox-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-note {
  font-size: 14px;
  color: #4A3428;
  margin-top: 16px;
  text-align: center;
}

/* Opening Hours Section */
.opening-hours-section {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

.opening-hours-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.hours-item {
  background-color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 6px;
  border: 2px solid #F4E6D8;
  flex: 1 1 280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #4A3428;
  margin-bottom: 16px;
}

.hours-item strong {
  color: #2C1810;
}

/* Visit Section */
.visit-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.visit-content h2 {
  margin-bottom: 16px;
}

.visit-content > p {
  font-size: 16px;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  margin: 24px 0 32px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: #4A3428;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #B85A0F;
  font-weight: bold;
  font-size: 18px;
}

/* Legal Content */
.legal-hero {
  padding: 50px 20px 30px;
}

.last-updated {
  font-size: 14px;
  color: #4A3428;
  font-style: italic;
}

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-content .text-section h2 {
  font-size: 24px;
  color: #2C1810;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content .text-section h3 {
  font-size: 20px;
  color: #B85A0F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content .text-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content .text-section li {
  margin-bottom: 8px;
  color: #4A3428;
  line-height: 1.8;
}

.legal-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #F4E6D8;
}

.legal-links h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2C1810;
}

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

.legal-links nav a {
  color: #B85A0F;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.legal-links nav a:hover {
  padding-left: 8px;
  color: #8B4409;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #FFF5ED 0%, #F4E6D8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #E8D4C0;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27AE60;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

.thank-you-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #2C1810;
}

.thank-you-hero .subtitle {
  font-size: 18px;
  color: #4A3428;
}

/* Confirmation Section */
.confirmation-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.confirmation-section .text-section {
  max-width: 700px;
}

.confirmation-section p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* Next Steps */
.next-steps {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background-color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 8px;
  border-left: 4px solid #B85A0F;
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(184, 90, 15, 0.08);
  margin-bottom: 20px;
}

.step-card p {
  font-size: 16px;
  color: #4A3428;
}

/* Suggested Actions */
.suggested-actions {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.action-card {
  background-color: #FFF5ED;
  padding: 40px 32px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 90, 15, 0.15);
  border-color: #B85A0F;
}

.action-card h3 {
  font-size: 22px;
  color: #2C1810;
}

/* Contact Alternatives */
.contact-alternatives {
  padding: 60px 20px;
  background-color: #FFF5ED;
}

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

.contact-alternatives .contact-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #F4E6D8;
}

.contact-alternatives .contact-info p {
  font-size: 16px;
  color: #4A3428;
  margin-bottom: 12px;
}

.contact-alternatives .contact-info strong {
  color: #B85A0F;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 3px solid #B85A0F;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.cookie-consent-text a {
  color: #B85A0F;
  text-decoration: underline;
}

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

.cookie-consent-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-accept {
  background-color: #27AE60;
  color: #FFFFFF;
  border: 2px solid #27AE60;
}

.btn-accept:hover {
  background-color: #229954;
  border-color: #229954;
}

.btn-reject {
  background-color: transparent;
  color: #4A3428;
  border: 2px solid #E8D4C0;
}

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

.btn-settings {
  background-color: transparent;
  color: #B85A0F;
  border: 2px solid #B85A0F;
}

.btn-settings:hover {
  background-color: #FFF5ED;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 24, 16, 0.8);
  z-index: 2500;
  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: #FFFFFF;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.cookie-modal-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F4E6D8;
}

.cookie-modal-header h2 {
  font-size: 28px;
  color: #2C1810;
  margin-bottom: 8px;
}

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

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

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E8D4C0;
  border-radius: 26px;
  transition: 0.3s;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #27AE60;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

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

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

.cookie-modal-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #F4E6D8;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

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

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .benefits-grid,
  .services-grid,
  .products-grid,
  .features-grid,
  .tips-grid,
  .values-grid,
  .trust-grid,
  .stats-grid,
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card,
  .service-card,
  .product-card,
  .feature-item,
  .tip-card,
  .value-card,
  .trust-item,
  .stat-item,
  .contact-card {
    max-width: 100%;
  }

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

  .footer-section {
    width: 100%;
  }

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

  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-consent-buttons .btn {
    flex: 1;
    min-width: 100px;
  }

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

  .cookie-modal-footer {
    flex-direction: column;
  }

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

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

  h2 {
    font-size: 24px;
  }

  .logo img {
    height: 50px;
  }

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

  .section {
    padding: 40px 20px;
  }

  .benefits,
  .featured-services,
  .testimonials,
  .trust-indicators,
  .cta-section {
    padding: 40px 20px;
  }
}

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

.benefit-card,
.service-card,
.product-card,
.testimonial-card {
  animation: fadeIn 0.5s ease-out;
}

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

  .site-header {
    position: static;
  }

  body {
    background-color: #FFFFFF;
  }
}