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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  background: linear-gradient(135deg, #005096 0%, #1383c9 100%);
  color: white;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.lang-switcher {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.lang-switcher a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.lang-switcher a:hover {
  opacity: 1;
}

.lang-switcher a.active {
  opacity: 1;
  font-weight: 600;
  text-decoration: underline;
}

.lang-switcher .separator {
  color: white;
  opacity: 0.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-section {
  text-align: center;
  padding: 1rem 0;
}

.logo-section .logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 300;
  max-width: 800px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.hero {
  background: #f5f5f5;
  color: #333;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #005096;
}

.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}

.section {
  padding: 4rem 0;
}

.section-title {
  color: #005096;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 4px solid #1383c9;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-content {
  padding: 2rem;
}

.service-card h3 {
  color: #005096;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  color: #005096;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.contact-info a {
  color: #1383c9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #005096;
  text-decoration: underline;
}

.maps-link {
  display: inline-block;
  color: #1383c9 !important;
  font-weight: 500;
}

.maps-link:hover {
  color: #005096 !important;
}

.cta-button {
  display: inline-block;
  background: #1383c9;
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #005096;
  transform: scale(1.05);
}

.footer {
  background: #005096;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-resources {
  margin-bottom: 1rem;
}

.footer-resources h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-resources li {
  margin-bottom: 0.5rem;
}

.footer-resources a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-resources a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.footer p {
  opacity: 0.9;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .lang-switcher {
    position: static;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .logo-section .logo {
    max-width: 200px;
  }
}
