* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #ffffff;
  color: #2e2e2e;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 25px 0;
}

header {
  background: linear-gradient(135deg, #1F3A2E 0%, #25463A 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}


header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7BB661;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.25s ease;
}


nav a:hover {
  background-color: #E89BB4;
  color: #fff;
}

.hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #FFE9F2 0%, #FFF4E8 50%, #E89BB4 100%);
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  color: #7BB661;
  margin-bottom: 12px;
  font-weight: 800;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #7BB661;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 4px 12px rgba(123,182,97,0.35);
}

.btn:hover {
  background-color: #E89BB4;
  color: #fff;
  transform: translateY(-2px);
}

section {
  padding: 50px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
}

section:nth-of-type(even) {
  background-color: #F7FBEF;
}

section h2 {
  font-size: 1.8rem;
  color: #7BB661;
  margin-bottom: 18px;
  font-weight: 800;
  position: relative;
}

section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #E89BB4;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 25px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 20px;
  border-radius: 10px;
  transition: 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card:hover {
  border-color: #E89BB4;
  background-color: #FFF0F6;
  transform: translateY(-4px);
}

.team-photo {
  width: 100%;
  max-width: 190px;
  border-radius: 12px;
  border: 6px solid #E89BB4;
  box-shadow: 0 4px 12px rgba(123,182,97,0.35);
  margin: 0 auto 18px auto;
  display: block;
  object-fit: cover;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #7BB661;
  margin-bottom: 6px;
  font-weight: 700;
}

footer {
  background-color: #1F2A33;
  color: #fff;
  padding: 30px 0;
  margin-top: 40px;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
  font-size: 0.95rem;
}

.service-form-section {
  padding: 40px 20px;
  background-color: #F7FBEF;
  border-radius: 10px;
  margin-top: 30px;
}

.service-form-section h2 {
  color: #7BB661;
  margin-bottom: 10px;
}

.service-form-section p {
  margin-bottom: 20px;
  color: #333;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-form label {
  font-weight: 600;
  color: #333;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  transition: 0.25s ease;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
  border-color: #7BB661;
  box-shadow: 0 0 6px rgba(123,182,97,0.35);
  outline: none;
}

.service-form button {
  background-color: #7BB661;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 4px 10px rgba(123,182,97,0.35);
}

.service-form button:hover {
  background-color: #E89BB4;
  color: #333;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}