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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  min-height: 100vh;

  background-image: linear-gradient(
    to right top,
    #1f365e,
    #223c69,
    #264375,
    #2a4981,
    #2e508d,
    #325493,
    #365998,
    #3a5d9e,
    #3e609e,
    #42639f,
    #46669f,
    #4a699f
  );
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.language-switcher {
  position: absolute;
  top: 0;
  right: 0;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.logo h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.construction-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.main-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section {
  text-align: center;
  margin-bottom: 40px;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-section h2 {
  font-size: 2rem;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 20px;
}

.content-section {
  max-width: 700px;
  margin: 0 auto;
}

.message-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.1);
  position: relative;
  overflow: hidden;
}

.message-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
}

.message-card p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.message-card p:last-child {
  margin-bottom: 0;
}

.service-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
}

.emergency-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  position: relative;
  overflow: hidden;
}

.emergency-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.emergency-card h3 {
  color: #dc2626;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.emergency-card p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.emergency-card a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.emergency-card a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.service-card h3 {
  color: #2d3748;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.note {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  padding: 20px;
  border-radius: 16px;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.contact-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
}

.contact-section h3 {
  color: #2d3748;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contact-item {
  text-align: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 193px;
  /* display: flex;
  flex-direction: column;
  justify-content: start; */
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

.contact-item strong {
  display: block;
  margin-bottom: 10px;
  color: #4a5568;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  line-height: 1.5;
}

.contact-item a {
  color: #2563eb;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-item a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.team-section {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.1);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
}

.team-signature {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.signature {
  font-size: 1.2rem;
  color: #2d3748;
}

.footer {
  text-align: center;
  margin-top: 40px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .header {
    margin-bottom: 30px;
  }

  .language-switcher {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }

  .logo h1 {
    font-size: 2rem;
  }

  .main-content {
    padding: 32px;
  }

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

  .message-card,
  .service-card,
  .emergency-card,
  .contact-section,
  .team-section {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .language-switcher {
    margin-bottom: 15px;
  }

  .logo h1 {
    font-size: 1.7rem;
  }

  .main-content {
    padding: 24px;
  }

  .hero-icon {
    font-size: 3rem;
  }

  .message-card,
  .service-card,
  .emergency-card,
  .contact-section,
  .team-section {
    padding: 20px;
  }
}
