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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #f8f3ed 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9e8469;
  padding: 20px;
  position: relative;
}

.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 25px;
  box-shadow: 0 3px 15px rgba(158, 132, 105, 0.2);
  backdrop-filter: blur(10px);
}

.lang-btn {
  background: transparent;
  border: 2px solid #cbb79e;
  color: #9e8469;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 45px;
  text-decoration: none;
  display: inline-block;
}

.lang-btn:hover {
  background: #f8f3ed;
  border-color: #9e8469;
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, #d4b58e 0%, #cbb79e 100%);
  border-color: #9e8469;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(158, 132, 105, 0.3);
}

.lang-btn:active {
  transform: translateY(0);
}

.container {
  text-align: center;
  max-width: 600px;
  width: 100%;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #d4b58e 0%, #cbb79e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(158, 132, 105, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.icon::before {
  content: '🦷';
  font-size: 60px;
}

h1 {
  font-size: 2.5rem;
  color: #9e8469;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.25rem;
  color: #cbb79e;
  margin-bottom: 40px;
  line-height: 1.6;
}

.professional-title {
  font-size: 1.1rem;
  color: #9e8469;
  margin-bottom: 40px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.5px;
}

.message {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(158, 132, 105, 0.1);
  margin-bottom: 30px;
  border: 2px solid #f8f3ed;
}

.message p {
  font-size: 1.1rem;
  color: #9e8469;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4b58e, #cbb79e);
  margin: 30px auto;
  border-radius: 2px;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #cbb79e;
}

.urgency-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f3ed 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(158, 132, 105, 0.15);
  margin-bottom: 30px;
  border: 2px solid #d4b58e;
  position: relative;
}

.urgency-box::before {
  content: '🚨';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1.5rem;
  box-shadow: 0 3px 10px rgba(158, 132, 105, 0.2);
}

.urgency-box h2 {
  font-size: 1.3rem;
  color: #9e8469;
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 600;
}

.urgency-box p {
  font-size: 1rem;
  color: #9e8469;
  line-height: 1.8;
  margin-bottom: 15px;
}

.phone-link {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #9e8469;
  text-decoration: none;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #cbb79e;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.phone-link:hover {
  background: #f8f3ed;
  border-color: #9e8469;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(158, 132, 105, 0.2);
}

.phone-link:active {
  transform: translateY(0);
}

.location-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f3ed 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(158, 132, 105, 0.15);
  margin-bottom: 30px;
  border: 2px solid #d4b58e;
  position: relative;
}

.location-box::before {
  content: '📍';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1.5rem;
  box-shadow: 0 3px 10px rgba(158, 132, 105, 0.2);
}

.location-box h2 {
  font-size: 1.3rem;
  color: #9e8469;
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 600;
}

.location-box p {
  font-size: 1rem;
  color: #9e8469;
  line-height: 1.8;
  margin-bottom: 15px;
}

.map-link {
  display: block;
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(158, 132, 105, 0.2);
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(158, 132, 105, 0.3);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.map-hint {
  font-size: 0.9rem;
  color: #cbb79e;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 0;
}

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

  .subtitle {
    font-size: 1.1rem;
  }

  .professional-title {
    font-size: 1rem;
  }

  .message {
    padding: 20px;
  }

  .message p {
    font-size: 1rem;
  }

  .icon {
    width: 100px;
    height: 100px;
  }

  .icon::before {
    font-size: 50px;
  }

  .location-box {
    padding: 20px;
  }

  .location-box h2 {
    font-size: 1.1rem;
  }

  .location-box p {
    font-size: 0.95rem;
  }

  .map-hint {
    font-size: 0.85rem;
  }

  .language-selector {
    top: 10px;
    right: 10px;
    padding: 6px;
    gap: 6px;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    min-width: 40px;
  }
}
