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

body {
  font-family: Arial, sans-serif;
  background: #f7f3ee;
  color: #4f4b4b;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.email{
  color: #4f4b4b;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 90px 0;
}

.alt-bg {
  background: #efe8e1;
}

h1,
h2,
h3 {
  color: #6d5a67;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

p {
  margin-bottom: 20px;
}

/* NAVBAR */

.navbar {
  background: #f7f3ee;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-area img {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #6d5a67;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.75;
}

/* LANGUAGE SWITCH */

.language-switch {
  text-decoration: none;
  color: #6d5a67;
  background: rgba(127, 155, 144, 0.14);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.language-switch:hover {
  background: rgba(127, 155, 144, 0.22);
  transform: translateY(-1px);
}

/* BUTTONS */

.btn-primary {
  background: #7f9b90;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 40px;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(127, 155, 144, 0.18);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-secondary {
  color: #6d5a67;
  text-decoration: none;
  margin-left: 15px;
}

/* HERO */

.hero {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  min-height: 85vh;

  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 24px;
}

.hero-buttons {
  margin-top: 30px;
}

/* CREDENTIALS */

.credentials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.credentials span {
  background: #efe8e1;
  padding: 10px 18px;
  border-radius: 30px;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

/* SERVICES */

.three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-box {
  background: white;
  padding: 35px;
  border-radius: 20px;
}

/* FEATURES */

.feature-list {
  margin-top: 30px;
  padding-left: 20px;
}

/* CONTACT */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 16px;
  border: 1px solid #d8d2cb;
  border-radius: 12px;
  background: white;
  font-size: 1rem;
}

.contact-form button {
  width: fit-content;
}

.contact-info {
  margin-top: 40px;
}

/* FOOTER */

.footer {
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  height: 90px;
  margin: auto;
  margin-bottom: 20px;
}

.form-note {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-top: 10px;
}

/* MOBILE */

@media (max-width: 900px) {

  .navbar {
    padding: 14px 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 18px;
  }

  .logo-area img {
    height: 56px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.92rem;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    min-height: auto;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-image img {
    max-width: 320px;
    margin: auto;
  }

  h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .credentials {
    justify-content: center;
  }

  .three-columns {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
  }

}