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

body {
  font-family: 'Inter', sans-serif;
  color: #2f2f2f;
  background: #fdfdfd;
  line-height: 1.6;
}

/* TOP SECTION */
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 160px;
  gap: 40px;
  flex-wrap: wrap;
}

.top-left {
  flex: 1 1 400px;
}

.top-left h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
  text-align: justify;
}

.top-left p {
  font-size: 16px;
  color: #555;
  letter-spacing: 0.04em;
  font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
  text-align: justify;
}

.top-right img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* SERVICES SECTION */
.services-section {
  padding: 20px 160px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #dcdcdc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
}

.service-card h3 a {
  text-decoration: none;
  color: #2f2f2f;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
  font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
  text-align: justify;
}

.service-card a.book-btn {
  display: inline-block;
  padding: 10px 20px;
  background: black;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* SECTION DIVIDER */
.section-divider {
  width: 50%;
  margin: 30px auto;
  border: 0;
  border-top: 2px solid #eee;
}

/* feedbacks */
.feedbacks-section {
  text-align: center;
  padding: 20px 460px;
}

.feedbacks-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
  text-align: justify;
}

.feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.feedback img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feedback-content h3 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
  text-align: justify;
}

.feedback-content p {
  font-size: 14px;
  color: #555;
  letter-spacing: 0.04em;
  font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
  text-align: justify;
}

@media (max-width: 768px) {

  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
  }

  /* Fix large paddings */
  .top-section,
  .services-section,
  .feedbacks-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Center feedback properly */
  .feedback {
    flex-direction: column;
    text-align: center;
  }

  .feedback-content h3,
  .feedback-content p {
    text-align: center;
  }

  /* Ensure images don’t overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .top-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .top-right img {
    margin: 0 auto;
  }

  .feedbacks-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
    text-align: justify;
  }

}
