@charset "utf-8";
/* CSS Document */

.service-section{
	text-align: center;
	padding: 4rem 1rem;
}

.service-section p {
	text-align: left;
}

/* Suggested nav but not usefull for now.
.service-nav {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}
.service-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #14213D;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #eaeaea;
  transition: background 0.2s;
}
.service-nav a:hover {
  background: #dcdcdc;
}
*/

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  text-align: center;
}

.service-card h3 {
  font-size: 1.25rem;
	color: #14213D;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
  text-align: left;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* WHY CHOOSE SECTION */
.why-choose {
  margin-top: 3rem;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.why-choose p {
  font-size: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  color: #333;
  text-align: left;
}

/* TESTIMONIAL / CLIENT FEEDBACK BLOCK */
.client-feedback {
  margin-top: 3rem;
  padding: 2rem 1rem;
  text-align: center;
}

.client-feedback h3 {
  margin-bottom: 1.5rem;
}

/* TESTIMONIAL BLOCKQUOTE */
.testimonial {
  font-style: italic;
  background-color: #F0F0F0;
  border-left: 4px solid #14213d;
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  max-width: 700px;
  position: relative;
  text-align: left;
  padding-left: 3rem;
}

.testimonial::before {
  content: "“";
  font-size: 2rem;
  font-weight: 800;
  color: #999;
  position: absolute;
  left: 15px;
  top: 5px;
  font-family: serif;
  }

.testimonial small {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: right;
}

.testimonial-pull {
  font-weight: 600;
  font-size: 1.1rem;
  color: #14213D;
  margin: 2rem 0 1rem;
  text-align: center;
}

/* FAQ/“NEXT STEPS” */
.next-steps {
  padding: 3rem 1rem;
  background-color: #f5f5f5;
  width: 100%;
  text-align: center;
}

.next-steps h2 {

}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: auto;
  max-width: 800px;
  text-align: center;
}

.next-steps li {
  position: relative;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.next-steps li:not(:last-child)::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background: #ddd;
  margin: 1.5rem auto 0;
}


.next-steps strong {
  display: block;
  font-weight: 700;
  color: #14213D;
  margin-bottom: 0.3rem;
}


/* PROOF SECTION” */
.proof-section {
  padding: 3rem 1rem;
  text-align: center;
}
.proof-content {
  max-width: 700px;
  margin: auto;
}
.proof-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #14213D;
  margin-bottom: 1rem;
}
.proof-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #353535;
  margin-bottom: 1rem;
}
