
/* Base styles */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

/* Layout helpers */
.container, .content-section, .hero, .flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, .cta, .cta-button {
  font-size: 1.2rem;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background-color: #FF7F11;
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Stats grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.stats-grid > div {
  flex: 0 0 30%;
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
}

/* Header */
header {
  background-color: #1D4E89;
  color: white;
}
.logo img {
  height: auto;
  max-height: 150px;
}
.nav-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
#get-help-link {
  animation: blink 1.2s linear infinite;
}

/* Hero */
.hero {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  background: rgba(0,0,0,0.4);
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  width: 100%;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background-color: #4A4A4A;
  color: white;
}
footer a {
  color: #FF7F11;
  text-decoration: none;
}

/* Google translate */
#google_translate_element {
  text-align: right;
  padding: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logo img {
    max-width: 80%;
    height: auto;
    margin-top: 1rem;
  }

  .nav-container, nav ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul li {
    margin: 0.3rem 0;
  }

  .cta-button {
    font-size: 1rem;
    width: 90%;
    margin: 1rem auto;
  }

  .hero-overlay {
    padding: 2rem 1rem;
  }

  .stats-grid > div {
    flex: 0 0 80%;
  }

  #google_translate_element {
    text-align: center !important;
    margin: 1rem auto;
    width: 90%;
  }

  footer {
    text-align: center;
  }
}

/* Blinking animation */
@keyframes blink {
  50% { opacity: 0.4; }
}
