/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #f4ffe5 0%, #fffdd0 100%);
  color: #333;
}

/* Header */
header {
  background: linear-gradient(90deg, #9cd67b, #f6e27a);
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: #fff;
  color: #5BA55B;
  border: 2px solid #5BA55B;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  font-family: 'Quicksand', sans-serif;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, background 0.3s;
  padding: 6px 12px;
  border-radius: 6px;
}

.nav-links a:hover {
  background: #f6e27a;
  color: #5BA55B;
}

/* Language Selector */
#languageSwitcher {
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(120deg, #dfffd6, #fff9c4);
  color: #333;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.2rem;
}

/* Info Section */
.info {
  padding: 50px 20px;
  text-align: center;
  background: #ffffffaa;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 450px;
  margin: auto;
  background: #ffffffaa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

input, textarea, button {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background: #5BA55B;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

button:hover {
  background: #7BC87B;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: linear-gradient(90deg, #9cd67b, #f6e27a);
  color: #333;
  margin-top: 30px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { flex-direction: column; gap: 12px; }
  .hero { padding: 60px 15px; }
}
