/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; 
  scroll-padding-top: 40px;
}

body {
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  flex: 1;
  font-size: 14px;
  color: #666;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-btn.accept {
  background: #8b5cf6;
  color: white;
}

.cookie-btn.accept:hover {
  background: #7c3aed;
}

.cookie-btn.decline {
  background: #e5e7eb;
  color: #374151;
}

.cookie-btn.decline:hover {
  background: #d1d5db;
}

.cookie-link {
  color: #8b5cf6;
  text-decoration: none;
  font-size: 14px;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #8b5cf6;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 20px;
}

.mobile-nav-list li {
  margin-bottom: 15px;
}

.mobile-nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link:hover {
  color: #8b5cf6;
}

/* Hero Section */
.hero {
  background: url('../images/bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: #8b5cf6;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #7c3aed;
}


.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Certificates Section */
.certificates {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
}

.section-description {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.certificates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 3rem;
}

.certificate-item {
  border-radius: 12px;
  background: #F2F0FC;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item h3 {
  color: #141414;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.certificate-item p {
  color: #4F4F4F;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}

.about-item {
  background: #F2F0FC;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.about-item-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Coaches Section */
.coaches {
  padding: 80px 0;
  background: #fff;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.coach-card {
  background: #F2F0FC;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.coach-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;

}

.coach-card:hover .coach-img {
  transform: scale(1.05);
}

.coach-info {
  padding: 25px;
  text-align: center;
}

.coach-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.coach-role {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
}
.certificates {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
}

.section-description {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.certificates-grid {
  display: grid;
  grid-template-columns: 1fr;
    gap: 30px;
  margin-top: 3rem;
}

.certificate-item {
  background: #F2F0FC;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certificate-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }
  
  .hamburger {
      display: flex;
  }
  
  .hero {
      padding: 60px 0;
      min-height: auto;
  }
  
  .hero-container {
      flex-direction: column;
      gap: 40px;
      text-align: center;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-description {
      font-size: 1rem;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .section-description {
      font-size: 1rem;
  }
  
  .coaches {
      padding: 60px 0;
  }
  
  .about {
      padding: 60px 0;
  }
  
  .about-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .about-item {
      padding: 25px;
  }
  
  .about-item-title {
      font-size: 1.2rem;
  }
  
  .coaches-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
  }
  

  .coach-info {
      padding: 20px;
  }
  
  .coach-name {
      font-size: 1.2rem;
  }
  
  .coach-role {
      font-size: 0.9rem;
  }
  
  .certificates-grid {
      gap: 20px;
  }
  
  .cookie-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .cookie-buttons {
      flex-wrap: wrap;
      justify-content: center;
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  margin-top: 3rem;
}

.service-item {
  background: #F2F0FC;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-cta {
  display: block;
  background: #8b5cf6;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  margin: 30px auto 0;
  width: fit-content;
}

.service-cta:hover {
  background: #7c3aed;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-intro {
  font-size: 1.2rem;
  color: #374151;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.testimonial-item {
  background: #F2F0FC;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #8b5cf6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
}

/* Development Section */
.development {
  padding: 80px 0;
  background: #f8f9fa;
}

.development-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  margin-top: 3rem;
}

.development-item {
  background: #F2F0FC;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.development-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.development-image {
  width: 100%;
  overflow: hidden;
}

.development-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.development-item:hover .development-img {
  transform: scale(1.05);
}

.development-content {
  padding: 25px;
}

.development-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.development-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}


/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f3f4f6;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #F2F0FC;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Noto Sans', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #f9fafb;
}

.form-input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  background: #fff;
}

.form-submit {
  background: #8b5cf6;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.form-submit:hover {
  background: #7c3aed;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-text {
  font-weight: 500;
}

/* Footer */
.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #8b5cf6;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  border-top: 1px solid #374151;
  padding-top: 20px;
}

/* Responsive Design for Contact and Footer */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }
  
  .hamburger {
      display: flex;
  }
  
  .hero {
      padding: 60px 0;
      min-height: auto;
  }
  
  .hero-container {
      flex-direction: column;
      gap: 40px;
      text-align: center;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-description {
      font-size: 1rem;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .section-description {
      font-size: 1rem;
  }
  
  .services {
      padding: 60px 0;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }
  
  .service-item {
      padding: 25px;
  }
  
  .service-title {
      font-size: 1.2rem;
  }
  
  .testimonials {
      padding: 60px 0;
  }
  
  .testimonials-intro {
      font-size: 1.1rem;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }
  
  .testimonial-item {
      padding: 25px;
  }
  
  .development {
      padding: 60px 0;
  }
  
  .development-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .development-image {
      height: 180px;
  }
  
  .development-content {
      padding: 20px;
  }
  
  .contact {
      padding: 60px 0;
  }
  
  .contact-container {
      padding: 30px 20px;
      margin: 0 20px;
  }
  
  .contact-info {
      flex-direction: column;
      gap: 20px;
      align-items: center;
      text-align: center;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .footer {
      padding: 30px 0;
  }
  
  .about {
      padding: 60px 0;
  }
  
  .about-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .about-item {
      padding: 25px;
  }
  
  .about-item-title {
      font-size: 1.2rem;
  }
  
  .coaches-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
  }
  
  
  .coach-info {
      padding: 20px;
  }
  
  .coach-name {
      font-size: 1.2rem;
  }
  
  .coach-role {
      font-size: 0.9rem;
  }
  
  .certificates-grid {
      gap: 20px;
  }
  
  .cookie-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .cookie-buttons {
      flex-wrap: wrap;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 1.7rem;
  }
  
  .section-title {
      font-size: 1.5rem;
  }
  
  .cta-button {
      padding: 12px 24px;
      font-size: 0.9rem;
  }
  
  .coaches-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

}

.legal-document {
  margin-top: 70px;
}

.legal-section {
  margin-bottom: 2.5rem;
}


.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.subsection-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-section p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-list li {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}