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

:root {
  --off-white: #f8f9f5;
  --forest-green: #2d5a3d;
  --sage: #7a9b76;
  --moss: #a8c4a4;
  --earth: #c4b7a6;
  --sand: #e8e4dc;
  --text-primary: #1a2e1f;
  --text-secondary: #4a5f4e;
  --text-muted: #6b7d6a;
  --shadow-subtle: 0 4px 24px rgba(45, 90, 61, 0.08);
  --shadow-light: 0 2px 12px rgba(45, 90, 61, 0.05);
}

html, body {
  height: 100%;
  min-height: 100vh;
  background: var(--off-white);
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-subtle);
  padding: 48px 40px;
  text-align: center;
  width: 100%;
  max-width: 580px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45, 90, 61, 0.12);
}

.icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: var(--shadow-light);
}

.icon{
  font-size: 50px;
  margin-bottom: 20px;
  color: #00e6d8;
  text-shadow: 0 0 10px #00e6d855;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

    

h1 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin: 0 auto 28px;
  opacity: 0.5;
}

.message {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

.values-section {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--sand);
  transition: transform 0.2s ease, background 0.2s ease;
}

.value-item:hover {
  transform: translateY(-2px);
  background: var(--sand);
}

.value-icon {
  font-size: 24px;
  line-height: 1;
}

.value-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.contact-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 400;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: #ffffff;
  border: 1px solid var(--sand);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-light);
}

.contact-link:hover {
  background: var(--forest-green);
  color: #ffffff;
  border-color: var(--forest-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.15);
}

.contact-icon {
  font-size: 18px;
}

.contact-text {
  color: inherit;
}

footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}

footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-tagline {
  font-size: 12px;
  color: var(--forest-green);
  font-style: italic;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 640px) {
  .card {
    padding: 36px 28px;
    border-radius: 20px;
  }
  
  h1 {
    font-size: 26px;
  }
  
  .subtitle {
    font-size: 13px;
  }
  
  .message {
    font-size: 15px;
  }
  
  .values-section {
    gap: 16px;
  }
  
  .value-item {
    padding: 12px 16px;
    min-width: 90px;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 32px 24px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .icon {
    font-size: 32px;
  }
  
  .values-section {
    flex-direction: column;
    gap: 12px;
  }
  
  .value-item {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 12px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for accessibility */
a:focus,
.contact-link:focus {
  outline: 2px solid var(--forest-green);
  outline-offset: 2px;
}
