/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* GLOBAL */
body {
  background: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #0b5ed7;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

/* HEADER */
.header {
  background: #0b5ed7;
  color: #fff;
  padding: 14px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo-tag {
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
  opacity: 0.9;
}

/* HERO */
.hero {
  text-align: center;
  padding: 48px 16px 32px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

/* SEARCH */
.search-box {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.search-box input {
  width: 220px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-box button {
  padding: 12px 18px;
  font-size: 16px;
  background: #198754;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-box button:hover {
  background: #157347;
}

.helper-text {
  font-size: 13px;
  color: #666;
}

/* LANGUAGE */
.language-section {
  text-align: center;
  margin: 40px 0;
}

.language-buttons {
  margin-top: 12px;
}

.lang-btn {
  display: inline-block;
  margin: 6px;
  padding: 10px 16px;
  border: 1px solid #0b5ed7;
  border-radius: 20px;
  font-size: 14px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

/* FOOTER */
.footer {
  background: #e9ecef;
  padding: 20px 0;
  font-size: 13px;
  text-align: center;
}

.footer .disclaimer {
  margin-top: 8px;
  color: #555;
}
