
body {
  margin: 0;
  padding: 20px 0 60px;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #edf3f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.page {

  width: 100%;

  max-width: 1000px;

  margin: 0 auto;

  box-sizing: border-box;

}

header {
  width: 100%;
  background: linear-gradient(135deg, #0b83a8, #0bbbd2);
  color: #fff;
  padding: 40px 40px 24px;
  text-align: center;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 16px 52px rgba(15, 23, 42, 0.14);
  position: relative;
  box-sizing: border-box;
}



header h1 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: -0.04em;
}

header h2 {
  margin: 10px auto 0;
  font-size: 1.7rem;
  font-weight: 500;
}

header p {
  font-size: 1.05rem;
  max-width: 860px;
  margin: 20px auto 0;
}

.container {
  width: 100%;
  padding: 40px 40px 48px;
  background: #ffffff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  color: #16223a;
  box-sizing: border-box;
}

.hero-title {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 36px auto 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.hero-text,
.service-text,
.pricing-text,
.contact-text {
  font-size: 1.05rem;
}

.section {
  padding: 34px 0;
  border-bottom: 1px solid #e8eff5;
}

.section:last-of-type {
  border-bottom: none;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #0f4a65;
}

.btn_1,
.btn_2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 16px 26px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn_1:hover,
.btn_2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn_1 {
  background: #d97315;
}

.btn_2 {
  background: #14913b;
}

.section_2 {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 28px;
  padding-bottom: 28px;
}

.section_3 {
  text-align: center;
  padding-top: 18px;
}

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

.card {
  border: none;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1ab88a 0%, #16ab81 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 83, 63, 0.16);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  margin: 0;
}

.highlight {
  background: #eef9ff;
  border-radius: 18px;
  padding: 24px;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section ul li {
  font-size: 1.05rem;
  background: #f8fbff;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(15, 31, 58, 0.06);
}

footer {
  width: 100%;
  max-width: 980px;
  margin: 32px auto 0;
  text-align: center;
  color: #475569;
  font-size: 0.95rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  header {
    padding: 30px 20px 20px;
    border-radius: 20px 20px 0 0;
  }

  header h1 {
    font-size: 2.2rem;
  }

  header h2 {
    font-size: 1.4rem;
  }

  header p {
    font-size: 0.95rem;
  }

  .container {
    padding: 30px 20px 36px;
    border-radius: 0 0 20px 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section h2 {
    font-size: 1.4rem;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-image {
    margin: 24px auto 0;
  }

  .section_2 {
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .btn_1,
  .btn_2 {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  footer {
    font-size: 0.9rem;
  }
}
