*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  color: #222;
}

a {
  text-decoration: none;
  color: #c99700;
}

.lang-links {
  color: #ffc107;
}

.lang-links a {
  color: #ffc107;
}

header {
  background: #333a45;
  color: #fff;
  border-bottom: 3px solid #ffc107;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
}

header .logo h1 {
  margin: 0;
  font-size: 1.5em;
  color: #fff;
  line-height: 1.2;
}

header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
}

header nav ul li a {
  color: #fff;
  font-weight: 700;
}

header nav ul li a:hover {
  color: #ffc107;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url(https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1920&q=80)
      no-repeat center center / cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: clamp(1.8em, 4vw, 3em);
  margin: 0 0 20px;
  color: #fff;
}

.hero p {
  font-size: 1.15em;
  margin: 0 0 30px;
}

.cta-button {
  display: inline-block;
  background: #ffc107;
  color: #333a45;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #e0a800;
  color: #333a45;
}

.services-section {
  padding: 60px 0;
  background-color: #fff;
}

.services-section h2 {
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(1.8em, 3vw, 2.5em);
}

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

.service-item {
  display: block;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.service-item img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin: 0 auto 15px;
  background: #e5e5e5;
}

.service-item h3 {
  margin: 0 0 10px;
  color: #333a45;
}

.service-item p {
  margin: 0;
}

.about-section {
  padding: 60px 0;
  background-color: #e9ecef;
}

.about-section h2 {
  text-align: center;
  margin: 0 0 30px;
  font-size: clamp(1.8em, 3vw, 2.5em);
}

.about-section p {
  text-align: left;
  margin: 0;
  max-width: 800px;
  margin-inline: auto;
}

.trust-section,
.faq-section {
  padding: 50px 0;
  background: #fff;
}

.trust-section h2,
.faq-section h2 {
  text-align: center;
  margin: 0 0 20px;
}

.trust-list {
  margin: 20px auto 0;
  padding-left: 20px;
  max-width: 600px;
}

.trust-list li {
  margin-bottom: 8px;
}

.faq-section details {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-section p {
  margin: 8px 0 0;
}

.contact-section {
  padding: 60px 0;
  background-color: #fff;
}

.contact-section h2 {
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(1.8em, 3vw, 2.5em);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
}

.contact-item i {
  font-size: 1.5em;
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item p {
  margin: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: #333a45;
}

.contact-form {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-form h3 {
  text-align: center;
  margin: 0 0 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font: inherit;
}

.contact-form .cta-button {
  width: 100%;
}

#leadStatus {
  text-align: center;
  margin-top: 10px;
  color: #333a45;
  font-weight: 600;
}

.footer {
  background: #333a45;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer p {
  margin: 0;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  header nav ul {
    justify-content: center;
  }

  header nav ul li {
    padding: 4px 0;
  }

  .hero {
    padding: 70px 16px;
  }
}
