* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(253, 239, 66, 0.45), transparent 35%),
    linear-gradient(135deg, #00853f 0%, #fdef42 50%, #e31b23 100%);
  color: #111;
}

.background-glow {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  z-index: -1;
}

.site-wrapper {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding: 16px;
}

.hero-section,
.section-card,
.partners-section {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 30px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: white;
  padding: 6px;
}

.brand h1 {
  color: #00853f;
  font-size: 24px;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  font-weight: 700;
  color: #e31b23;
}

.admin-btn {
  border: none;
  background: #111;
  color: white;
  padding: 12px 17px;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
}

.hero-content {
  text-align: center;
  padding: 35px 5px 10px;
}

.hero-badge {
  display: inline-block;
  background: #00853f;
  color: white;
  padding: 9px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
}

.hero-content h2 {
  margin: 20px auto 14px;
  font-size: 34px;
  line-height: 1.1;
  max-width: 850px;
  color: #111;
}

.hero-content p {
  max-width: 850px;
  margin: auto;
  line-height: 1.7;
  font-size: 16px;
}

.hero-actions,
.social-zone {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.primary-link,
.secondary-link,
.social-card {
  text-decoration: none;
  border-radius: 20px;
  padding: 15px;
  font-weight: 900;
  text-align: center;
}

.primary-link {
  background: linear-gradient(90deg, #00853f, #fdef42, #e31b23);
  color: #111;
}

.secondary-link {
  background: #111;
  color: white;
}

.social-card {
  color: white;
  display: grid;
  gap: 4px;
}

.social-card span {
  font-size: 18px;
}

.social-card small {
  opacity: 0.85;
}

.youtube-link {
  background: #e31b23;
}

.tiktok-link {
  background: #111;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title span {
  display: inline-block;
  background: #fdef42;
  color: #111;
  padding: 7px 14px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 12px;
}

.section-title h2 {
  margin-top: 10px;
  color: #00853f;
  font-size: 25px;
}

.steps-grid,
.subjects-grid,
.partners-grid {
  display: grid;
  gap: 15px;
}

.step-card,
.subjects-grid article {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #eee;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00853f, #fdef42, #e31b23);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
}

.step-card h3,
.subjects-grid h3 {
  color: #00853f;
  margin-bottom: 8px;
}

.step-card p,
.subjects-grid p {
  line-height: 1.6;
}

.form-card {
  border: 3px solid rgba(0, 133, 63, 0.15);
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-weight: 900;
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 18px;
  font-size: 15px;
  outline: none;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00853f;
  box-shadow: 0 0 0 4px rgba(0, 133, 63, 0.12);
}

textarea {
  resize: none;
}

.location-box {
  background: #f8f8f8;
  border: 2px dashed #00853f;
  padding: 16px;
  border-radius: 22px;
  margin: 18px 0;
}

.location-box p {
  margin-top: 6px;
  line-height: 1.5;
  font-size: 14px;
}

#locationBtn {
  width: 100%;
  margin-top: 14px;
  border: none;
  border-radius: 17px;
  padding: 13px;
  background: #00853f;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

#locationStatus {
  font-weight: 800;
  color: #e31b23;
}

.submit-btn {
  width: 100%;
  border: none;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(90deg, #00853f, #fdef42, #e31b23);
  color: #111;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
}

.form-message {
  text-align: center;
  margin-top: 15px;
  font-weight: 900;
}

.partner-logo {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 18px;
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid #eee;
}

.partner-logo img {
  max-width: 130px;
  max-height: 90px;
  object-fit: contain;
}

.site-footer {
  text-align: center;
  color: white;
  padding: 25px 16px;
  font-weight: 800;
  line-height: 1.7;
}

/* ADMIN */
.filter-buttons {
  display: grid;
  gap: 10px;
}

.filter-btn {
  border: none;
  border-radius: 16px;
  padding: 13px;
  background: #eee;
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.active {
  background: linear-gradient(90deg, #00853f, #fdef42, #e31b23);
}

.questions-container {
  display: grid;
  gap: 18px;
}

.question-card {
  background: #f8f8f8;
  border-left: 7px solid #00853f;
  padding: 18px;
  border-radius: 22px;
}

.question-card h3 {
  color: #00853f;
  margin-bottom: 12px;
}

.question-card p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.question-text {
  background: white;
  padding: 15px;
  border-radius: 17px;
  margin-top: 12px;
  font-weight: 800;
}

.download-btn {
  width: 100%;
  margin-top: 12px;
  border: none;
  border-radius: 16px;
  padding: 13px;
  background: #111;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.empty-text {
  text-align: center;
  font-weight: 900;
}

@media (min-width: 768px) {
  .site-wrapper {
    padding: 28px;
  }

  .hero-section,
  .section-card,
  .partners-section {
    padding: 34px;
  }

  .hero-content h2 {
    font-size: 52px;
  }

  .hero-actions,
  .social-zone {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .subjects-grid,
  .partners-grid,
  .filter-buttons {
    grid-template-columns: repeat(4, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}