* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2c5f4f;
  --secondary-color: #8b7355;
  --accent-color: #d4a574;
  --text-dark: #2d2d2d;
  --text-light: #666;
  --bg-light: #f8f6f3;
  --white: #ffffff;
  --border-color: #e5e1dc;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

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

.header {
  background: var(--white);
  padding: 20px 0;
  border-bottom: none;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  padding: 10px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.nav a i {
  font-size: 1rem;
}

.nav-cta {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 10px 25px !important;
}

.nav-cta:hover {
  background: var(--accent-color) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #1a4d3e 0%, #2c5f4f 50%, #3d7a63 100%);
  color: var(--white);
  padding: 120px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(212, 165, 116, 0.15) 0%,
    transparent 50%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 500;
}

.hero-badge i {
  color: var(--accent-color);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-hero-primary {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.btn-hero-primary:hover {
  background: #c49563;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-shape svg {
  width: 100%;
  height: auto;
  display: block;
}

.cta-modern {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d3e 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-left .section-label {
  color: var(--accent-color);
}

.cta-left h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.cta-left > p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.cta-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.cta-right {
  position: relative;
}

.cta-card {
  background: var(--white);
  color: var(--text-dark);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cta-phone {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: 'Cormorant Garamond', serif;
  margin: 10px 0;
}

.cta-hours {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.cta-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.cta-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--border-color);
}

.cta-divider span {
  position: relative;
  background: var(--white);
  padding: 0 15px;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.cta-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.cta-circle-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 30%;
}

.page-hero {
  background: linear-gradient(135deg, #1a4d3e 0%, #2c5f4f 50%, #3d7a63 100%);
  color: var(--white);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(212, 165, 116, 0.15) 0%,
    transparent 50%
  );
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
}

.page-hero .hero-badge i {
  color: var(--accent-color);
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.95;
}

.page-hero .hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}

.page-hero .hero-shape svg {
  width: 100%;
  height: auto;
  display: block;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #c49563;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

section {
  padding: 60px 0;
}

.services {
  background: var(--white);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
}

.about {
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 14px;
}

.features-list i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.process {
  background: var(--white);
}

.process h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.services-wave {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  padding: 80px 0;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.services-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--accent-color)
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.timeline-icon.autumn {
  background: linear-gradient(135deg, #d4a574, #8b7355);
}

.timeline-icon.winter {
  background: linear-gradient(135deg, #5a8f9f, #2c5f4f);
}

.timeline-icon.spring {
  background: linear-gradient(135deg, #7fb069, #2c5f4f);
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 0 40px;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.timeline-content ul {
  list-style: none;
}

.timeline-content li {
  color: var(--text-dark);
  font-size: 14px;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.timeline-content li::before {
  content: '\2022';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.why-choose {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.image-badge span {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  display: block;
  line-height: 1;
}

.image-badge p {
  font-size: 13px;
  margin: 5px 0 0 0;
  opacity: 0.9;
}

.why-content h2 {
  margin-bottom: 20px;
}

.why-content > p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 16px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.feature-box h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-box p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.process-modern {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.process-modern .section-label {
  color: var(--accent-color);
}

.process-modern h2 {
  color: var(--white);
  margin-bottom: 60px;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  position: relative;
}

.flow-number {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.flow-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.flow-step:hover .flow-icon {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.flow-step h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.flow-step p {
  font-size: 14px;
  opacity: 0.9;
}

.flow-arrow {
  font-size: 1.5rem;
  opacity: 0.5;
  margin: 0 10px;
}

.pricing-modern {
  background: var(--bg-light);
  padding: 80px 0;
}

.pricing-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.pricing-intro h2 {
  margin-bottom: 15px;
}

.pricing-intro p {
  color: var(--text-light);
  font-size: 16px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.price-card.featured {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.price-header h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.price-card.featured .price-header h3 {
  color: var(--white);
}

.price-header p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 25px;
}

.price-amount {
  margin: 30px 0;
}

.price-amount .currency {
  font-size: 1.2rem;
  vertical-align: top;
  opacity: 0.7;
}

.price-amount .amount {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-color);
}

.price-card.featured .price-amount .amount {
  color: var(--white);
}

.price-features {
  list-style: none;
  text-align: left;
  margin: 30px 0;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card.featured .price-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-features li.disabled {
  opacity: 0.4;
}

.price-features i {
  font-size: 1rem;
}

.price-btn {
  display: block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 25px;
}

.price-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.price-card.featured .price-btn {
  background: var(--accent-color);
}

.price-card.featured .price-btn:hover {
  background: #c49563;
}

.cta {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 25px 0;
}

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

.footer-info p {
  font-size: 13px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

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

.privacy-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.privacy-content p {
  font-size: 13px;
  opacity: 0.9;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-buttons button {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.privacy-buttons button:hover {
  background: #c49563;
}

.privacy-buttons a {
  color: var(--white);
  font-size: 13px;
  text-decoration: underline;
}

.content-section {
  padding: 60px 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.content-main h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.content-main p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.content-main img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 2rem 0;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box,
.contact-box {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 5px;
}

.info-box h3,
.contact-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.info-box i {
  color: var(--primary-color);
  margin-top: 3px;
}

.contact-box {
  text-align: center;
}

.contact-box p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 1rem 0;
}

.benefits {
  background: var(--bg-light);
}

.benefits h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 14px;
}

.pricing-section {
  background: var(--white);
}

.pricing-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.pricing-info {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pricing-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.price-ranges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.price-range {
  background: var(--bg-light);
  padding: 30px 20px;
  border-radius: 5px;
  text-align: center;
}

.price-range h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.price-range p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 1rem;
}

.price-range .price {
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: 600;
}

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

.areas-intro h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.areas-intro p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.areas-list {
  background: var(--bg-light);
}

.areas-list h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.area-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.area-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.area-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.area-card p {
  color: var(--text-light);
  font-size: 14px;
}

.map-section {
  background: var(--white);
}

.map-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.map-container {
  margin-bottom: 2rem;
  border-radius: 5px;
  overflow: hidden;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 5px;
}

.location-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.location-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.location-item p {
  color: var(--text-light);
  font-size: 14px;
}

.coverage-info {
  background: var(--bg-light);
}

.coverage-info h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.coverage-content {
  max-width: 900px;
  margin: 0 auto;
}

.coverage-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.coverage-list {
  list-style: none;
  margin: 2rem 0;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 14px;
}

.coverage-list i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-side h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info-side > p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 5px;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.method-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.method-info p {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.method-info span {
  color: var(--text-light);
  font-size: 13px;
}

.contact-form-side {
  background: var(--bg-light);
  padding: 35px;
  border-radius: 5px;
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 13px;
  color: var(--text-light);
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
}

.faq-section {
  background: var(--bg-light);
}

.faq-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 5px;
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 14px;
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 700px;
  padding: 40px;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thankyou-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.thankyou-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.thankyou-info {
  background: var(--white);
  padding: 25px;
  border-radius: 5px;
  margin: 2rem 0;
  text-align: left;
}

.thankyou-info p {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thankyou-info ul {
  list-style: none;
}

.thankyou-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-light);
  font-size: 14px;
}

.thankyou-info i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-number {
  font-size: 8rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.error-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.error-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.error-suggestions {
  background: var(--white);
  padding: 25px;
  border-radius: 5px;
  margin: 2rem 0;
  text-align: left;
}

.error-suggestions h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.error-suggestions ul {
  list-style: none;
}

.error-suggestions li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-light);
  font-size: 14px;
}

.error-suggestions i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.error-suggestions a {
  color: var(--primary-color);
  text-decoration: underline;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  background: var(--white);
  padding: 60px 0;
  word-break: break-all;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.policy-date {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 3rem;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.policy-content h3 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.policy-content strong {
  color: var(--text-dark);
  font-weight: 500;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border-color);
}

.cookie-table th {
  background: var(--bg-light);
  color: var(--primary-color);
  font-weight: 500;
}

.cookie-table td {
  color: var(--text-light);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 100px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .page-hero {
    padding: 70px 0 90px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .timeline-content {
    margin: 0 0 0 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px;
  }

  .image-badge span {
    font-size: 2rem;
  }

  .process-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: scale(1);
  }
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    gap: 15px;
  }

  .nav.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.3rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .about-content,
  .contact-layout,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid,
  .process-steps,
  .products-grid,
  .benefits-grid,
  .areas-grid,
  .location-info,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: center;
  }

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

  .error-number {
    font-size: 5rem;
  }

  .contact-form-side {
    padding: 25px;
  }

  .cookie-table {
    font-size: 12px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 80px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .page-hero {
    padding: 50px 0 70px;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }

  .service-card,
  .product-card {
    padding: 25px 20px;
  }

  .step {
    padding: 20px 10px;
  }

  .thankyou-content,
  .error-content {
    padding: 20px;
  }

  .error-number {
    font-size: 4rem;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }

  .policy-content h3 {
    font-size: 1.2rem;
  }
}
