* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}
body {
  background: #FDFBF7;
  color: #8B4513;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Annie Use Your Telescope', cursive;
}
button, .cta {
  background: linear-gradient(45deg, #F4C430, #FF6F3C);
  border: none;
  padding: clamp(12px, 3vw, 15px) clamp(20px, 4vw, 30px);
  border-radius: 50px;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
button:hover, .cta:hover {
  transform: scale(1.15) rotate(2deg);
  box-shadow: 0 0 15px rgba(255, 111, 60, 0.7);
}
section {
  padding: clamp(40px, 8vw, 80px) clamp(10px, 3vw, 20px);
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 69, 19, 0.9);
  color: #FDFBF7;
  padding: clamp(10px, 2vw, 15px) 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(10px, 3vw, 20px);
}
.header-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.nav-links {
  display: flex;
  gap: clamp(10px, 2vw, 15px);
}
.nav-links a {
  color: #F4C430;
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #FF6F3C;
}
.burger-menu {
  display: none;
  background: none;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #F4C430;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 69, 19, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu a {
  color: #F4C430;
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.mobile-menu a:hover {
  color: #FF6F3C;
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #F4C430;
}

/* Banner Section */
.banner {
  background: #A8D5BA;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.banner h1 {
    margin-top: 50px;

  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(10px, 2vw, 15px);
}
.banner-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 20px;
  margin: clamp(20px, 3vw, 30px) 0;
  transform: rotate(2deg);
}
.banner .cta {
  margin-top: clamp(15px, 2vw, 20px);
}

/* Running Numbers Section */
.numbers {
  background: #F5E8C7;
  text-align: center;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(20px, 3vw, 30px);
}
.number-card {
  background: #F4C430;
  padding: clamp(15px, 3vw, 20px);
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.number-card:hover {
  transform: scale(1.1);
}
.number-card h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #8B4513;
}

/* Contact Info Section */
.contact {
  background: #FDFBF7;
  text-align: center;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin: clamp(20px, 3vw, 30px) 0;
}
.contact-info p {
  margin: 10px 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.contact-social a {
  color: #F4C430;
  margin: 0 clamp(10px, 2vw, 15px);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  transition: transform 0.3s ease;
}
.contact-social a:hover {
  transform: rotate(20deg);
}

/* Form Section */
.form {
  background: #A8D5BA;
  text-align: center;
}
.form-container {
  max-width: 600px;
  margin: clamp(20px, 3vw, 30px) auto;
}
.form-field {
  margin-bottom: clamp(15px, 2vw, 20px);
  text-align: left;
}
.form-field label {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 5px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: clamp(10px, 2vw, 12px);
  border: 2px solid #F4C430;
  border-radius: 10px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  background: #FDFBF7;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(15px, 2vw, 20px);
}
.form-checkbox input {
  width: 20px;
  height: 20px;
}
.form-checkbox label {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.form-checkbox a {
  color: #F4C430;
  text-decoration: none;
}
.form-checkbox a:hover {
  color: #FF6F3C;
}
.form-message {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #8B4513;
}
.form-message.error {
  color: #FF6F3C;
}
.form-message.success {
  color: #F4C430;
}
.form-message.hidden {
  display: none;
}
.logo  {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Annie Use Your Telescope', cursive;
}
a {
  text-decoration: none;
  color: inherit;
}

/* FAQ Section */
.faq {
  background: #8B4513;
  color: #FDFBF7;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}
.faq-accordion {
  max-width: 700px;
  margin: clamp(20px, 3vw, 30px) auto;
}
.faq-item {
  margin-bottom: clamp(10px, 2vw, 15px);
  background: #F5E8C7;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.faq-item:hover {
  transform: scale(1.05);
}
.faq-header {
  padding: clamp(15px, 3vw, 20px);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 15px);
  color: #8B4513;
}
.faq-header i {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.faq-content {
  padding: clamp(15px, 3vw, 20px);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #8B4513;
}
.faq-content.hidden {
  display: none;
}

/* Wave Background Animation */
.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none" stroke="%23A8D5BA" stroke-width="1"><path d="M0 10 Q25 0 50 10 T100 10" /></svg>') repeat-x;
  opacity: 0.3;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .banner, .contact, .faq {
    clip-path: none;
  }
  .numbers-grid, .contact-content {
    grid-template-columns: 1fr;
  }
  .banner-image img {
    max-width: 600px;
  }
  .form-container {
    padding: 0 clamp(10px, 2vw, 15px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-image img {
    max-width: 700px;
  }
  .form-container {
    max-width: 500px;
  }
}