h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000a64;
}

h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #000a64;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: #000a64;
}

/* Container and Section Styling */
.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1350px;
}


.section-title-small {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
}

/* Styling for "Our Flooring Estimating Services" Section */
.our-flooring-estimating-services .section-title {
  font-size: 2.5rem;
}

.our-flooring-estimating-services section {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.our-flooring-estimating-services section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.our-flooring-estimating-services .btn {
  padding: 12px 30px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #2941b9;
  color: white;
}

.our-flooring-estimating-services .btn-lg {
  padding: 16px 35px;
  font-size: 1.25rem;
}

/* Styling for "Why Accurate Flooring Estimates Matter" Section */
.why-accurate-flooring-estimates .section-title {
  font-size: 2.5rem;
}

.why-accurate-flooring-estimates section {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-accurate-flooring-estimates section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.why-accurate-flooring-estimates section ul {
  list-style: disc;
  padding-left: 20px;
}

.why-accurate-flooring-estimates section ul li {
  margin-bottom: 10px;
}

/* Styling for "Our Flooring Estimating Process" Section */
.our-flooring-estimating-process .section-title {
  font-size: 2.5rem;
}

.our-flooring-estimating-process section {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.our-flooring-estimating-process section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Styling for "Types of Flooring We Estimate" Section */
.types-of-flooring-we-estimate .section-title {
  font-size: 2.5rem;
}

.types-of-flooring-we-estimate section {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.types-of-flooring-we-estimate section ul {
  list-style: disc;
  padding-left: 20px;
}

.types-of-flooring-we-estimate section ul li {
  margin-bottom: 10px;
}

/* Styling for "Industries We Serve with Flooring Estimating Services" Section */
.industries-we-serve .section-title {
  font-size: 2.5rem;
}

.industries-we-serve section {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.industries-we-serve section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Styling for "Why Choose USA Estimating Solutions" Section */
.why-choose-usa-estimating .section-title {
  font-size: 2.5rem;
}

.why-choose-usa-estimating section {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-usa-estimating section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Styling for Contact Form */
.contact-us .section-title {
  font-size: 2.5rem;
}

.contact-us section {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us section form input,
.contact-us section form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.1rem;
}

.contact-us section form button {
  padding: 12px 30px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}

.contact-us section form button:hover {
  background-color: #2980b9;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title-small {
    font-size: 1.75rem;
  }

  .our-flooring-estimating-services section,
  .why-accurate-flooring-estimates section,
  .our-flooring-estimating-process section,
  .types-of-flooring-we-estimate section,
  .industries-we-serve section,
  .why-choose-usa-estimating section,
  .contact-us section {
    padding: 15px;
  }

  .btn, .btn-lg {
    font-size: 1rem;
  }
}