/* Reset & Base Styles */
* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fff0f5;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #ff725e, #ffb347);
  color: white;
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="2" fill="white" opacity="0.3"/><circle cx="40" cy="80" r="2" fill="white" opacity="0.3"/></svg>');
}

.logo {
  width: 400px;
  margin-bottom: 10px;
}

header h1 {
  font-family: 'Fredoka', cursive;
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

header h2 {
  font-size: 1.5rem;
  color: #ffdd90;
}

/* Sections */
section {
  padding: 50px 0;
}

section h2 {
  font-family: 'Fredoka', cursive;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #e94e77;
}

/* About Section */
.about p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: #ff725e;
  margin-bottom: 10px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.team-member h3 {
  color: #e94e77;
  margin-bottom: 5px;
}

.team-member p {
  color: #666;
}

/* Contact Section */
.contact {
  background: #ffe4e1;
  padding: 60px 0;
}

.contact h2 {
  color: #e94e77;
}

.contact p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-form input,
#contact-form textarea {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

#contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

#contact-form button {
  background: #ff725e;
  color: white;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-family: 'Fredoka One', cursive;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

#contact-form button:hover {
  background: #e94e77;
}

/* Footer */
footer {
  background: #ff725e;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  header h2 {
    font-size: 1.2rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  #contact-form input,
  #contact-form textarea,
  #contact-form button {
    width: 100%;
  }
}
.youtube-section {
  padding: 50px 0;
  text-align: center;
  background: #fff;
}

.youtube-section h2 {
  font-family: 'Fredoka', cursive;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #e94e77;
}

.youtube-player {
  max-width: 800px;
  margin: 0 auto;
}

.youtube-player iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .youtube-player iframe {
    height: 300px;
  }
}




