.dedicated-construction-estimator {
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dedicated-construction-estimator__title {
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 700;
  color: #00317a;
}

.dedicated-construction-estimator__subtitle {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 600;
  color: #1565c0;
}

.dedicated-construction-estimator__intro,
.dedicated-construction-estimator__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.dedicated-construction-estimator__list li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5em;
  position: relative;
}

.dedicated-construction-estimator__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}

.dedicated-construction-estimator__img {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dedicated-construction-estimator__img:hover {
  transform: scale(1.03);
}

.dedicated-construction-estimator__btn {
  background-color: #1565c0;
  border: none;
  padding: 12px 28px;
}

.dedicated-construction-estimator__btn:hover {
  background-color: #0d47a1;
}

.dedicated-construction-estimator__contact a{
    color: #00317a;
}

.dedicated-construction-estimator__contact a:hover {
    text-decoration: none;
}
/* General Section Styling */
.dedicated-estimator-section {
  background-color: #f9f9f9;
  padding: 2rem 2rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Title */
.dedicated-estimator-section__title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  color: #2A3D5A;
  margin-bottom: 2rem;
}

/* Subtitles */
.dedicated-estimator-section__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2A3D5A;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 8px;
}

.dedicated-estimator-section__subtitle::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #007BFF;
  bottom: 0;
  left: 0;
}

/* Paragraph Text */
.dedicated-estimator-section__intro,
.dedicated-estimator-section__text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #5A5A5A;
}

/* List Styling */
.dedicated-estimator-section__list-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.dedicated-estimator-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 45%;
  font-size: 1.1rem;
  color: #444;
}

.dedicated-estimator-section__list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 10px;
}

/* Custom Bullet */
.dedicated-estimator-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #007BFF;
  border-radius: 50%;
}

/* CTA Button Styling */
.dedicated-estimator-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.dedicated-estimator-section__cta .btn {
  background-color: #007BFF;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px rgba(0, 123, 255, 0.2);
}

/* Hover effect for button */
.dedicated-estimator-section__cta .btn:hover {
  background-color: #0056b3;
  box-shadow: 0 15px 20px rgba(0, 86, 179, 0.3);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {

  .dedicated-estimator-section__title {
    font-size: 1.6rem;
  }
  .dedicated-estimator-section__list-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .dedicated-estimator-section__list {
    width: 80%;
    margin-bottom: 1.5rem;
  }

  .dedicated-estimator-section__cta .btn {
    width: 100%;
  }
}
