/* Reset & basiques */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f9f9f9;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.section {
  padding: 60px 0;
}
h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #214D4F;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #214D4F;
  color: white;
  padding: 60px 20px;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 400px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #214D4F;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-primary:hover {
  background-color: #e2e2e2;
}
.hero-image {
  flex: 1 1 300px;
  text-align: right;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* About */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.about-text {
  flex: 1 1 300px;
}
.about-image {
  flex: 1 1 300px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.about-text p {
  font-size: 1.1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.feature-card h3 {
  color: #214D4F;
  margin-bottom: 12px;
}

/* How it works */
.steps {
  list-style: none;
  counter-reset: step;
  max-width: 600px;
  margin: auto;
}
.steps li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 24px;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: #214D4F;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.testi-item {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}
.testi-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.testi-item .author {
  display: block;
  margin-top: 12px;
  font-style: italic;
  color: #555;
}

/* CTA Section */
.cta {
  text-align: center;
  background: #214D4F;
  color: white;
  padding: 40px 20px;
}
.cta .btn-secondary {
  background: white;
  color: #214D4F;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.cta .btn-secondary:hover {
  background-color: #e2e2e2;
}

/* Contact */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: start;
}
.contact-image {
  flex: 1 1 300px;
}
.contact-form-container {
  flex: 1 1 300px;
}
.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.contact-form-container h2 {
  margin-bottom: 20px;
  color: #214D4F;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}
.contact button {
  background: #214D4F;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}
.contact button:hover {
  background: #1a3d3d;
}

/* Footer */
.footer {
  background: #222;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
}
.footer .social-links {
  margin-top: 12px;
}
.footer .social-links a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
}
.footer .social-links a:hover {
  color: white;
}
