:root {
  --forest-green: #228b22;
  --sage-green: #9dc183;
  --mint-green: #c1e1c1;
  --olive-green: #556b2f;
  --lime-green: #32cd32;
  --dark-green: #5BA651;
  --medium-green: #2e7d32;
  --light-green: #4caf50;
  --pale-green: #c8e6c9;
  --lime-accent: #a5d6a7;
}

.renovation-main {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-heading {
  color: var(--olive-green);
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

.section-heading:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--lime-green);
}

.service-tile {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.service-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-header {
  background: linear-gradient(to right, var(--forest-green), var(--lime-green));
  color: white;
  padding: 15px 20px;
  position: relative;
}

.service-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
}

.service-content {
  padding: 20px;
}

.service-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--olive-green);
}
.foresto-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Header Styles */
.foresto-header {
  text-align: center;
  margin-bottom: 50px;
}

.foresto-header h2 {
  font-size: 2.3rem;
  color: #2a7a4d;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.foresto-header h2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #e8c15a;
  bottom: -10px;
  left: 25%;
}

/* Features Row */
.foresto-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.foresto-feature {
  background: white;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 0;
  max-width: 220px;
}

.foresto-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.foresto-icon {
  font-size: 2.2rem;
  color: #2a7a4d;
  margin-bottom: 15px;
}

.foresto-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #2a7a4d;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .foresto-features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .foresto-feature {
    min-width: 160px;
    max-width: 180px;
  }
}

@media (max-width: 900px) {
  .foresto-feature {
    max-width: 150px;
    padding: 20px 10px;
  }

  .foresto-icon {
    font-size: 2rem;
  }

  .foresto-feature h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .foresto-header h2 {
    font-size: 2rem;
  }

  .foresto-features {
    gap: 15px;
  }

  .foresto-feature {
    max-width: 130px;
    padding: 15px 8px;
  }
}

@media (max-width: 600px) {
  .foresto-features {
    flex-direction: column;
    align-items: center;
  }

  .foresto-feature {
    max-width: 220px;
    width: 100%;
  }
}

.foresto-advantages {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.foresto-headline {
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-weight: 700;
}

.foresto-headline:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--light-green);
}

.advantage-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--pale-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--medium-green);
  font-size: 24px;
}

.advantage-body {
  padding: 25px;
  text-align: center;
}

.advantage-title {
  color: var(--dark-green);
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-section {
  background: linear-gradient(135deg, var(--medium-green), var(--light-green));
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
  color: white;
}

.cta-title {
  font-weight: 600;
  margin-bottom: 20px;
}
