@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&family=Underdog&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    height: 100%;
    background: #ffffff;
  }
  img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  address {
    font-style: normal;
  }
  
  html {
      height: 100%;
      scroll-behavior: smooth;
  }
  
  .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      font-weight: bold;
      position: relative;
      background-color: #5c2964;
      padding: 20px 40px;
    }
    
    .header .logo a {
      font-size: 1.8rem;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }
    
    .header .nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .header .nav ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        padding: 10px;
        transition: color 0.3s ease;
      }
      
      .header .nav ul li a:hover {
        color: #f7a400;
      }
      
      .mobile-menu-icon {
        display: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
      }
      
      .mobile-menu-icon .bar {
        width: 25px;
        height: 4px;
        background-color: #fff;
        border-radius: 2px;
      }
      
      @media (max-width: 768px) {
        .header {
          padding: 15px;
        }
      
        .header .nav {
          display: none;
          width: 100%;
          position: absolute;
          top: 60px;
          left: 0;
          background-color: #5c2964;
          text-align: center;
        }
      
        .header .nav.active {
          display: block;
        }
        .header .nav ul {
            flex-direction: column;
            gap: 20px;
            padding: 20px;
          }
        
          .mobile-menu-icon {
            display: flex;
          }
        }



/* about */

.about {
  max-width: 1100px;
  margin: 80px auto 100px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  border-radius: 24px;
  box-shadow:
    0 16px 40px rgba(59, 99, 237, 0.15),
    inset 0 0 50px rgba(147, 197, 253, 0.1);
  padding: 40px;
  user-select: none;
}

.about img {
  flex: 1 1 40%;
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

.about_text {
  flex: 1 1 55%;
  color: #1e293b;
}

.about_text h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: #2563eb;
  text-shadow: 1px 1px 5px rgba(37, 99, 235, 0.5);
}

.about_text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #334155;
  user-select: text;
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    padding: 30px 15px;
    margin: 50px auto 80px;
  }

  .about img {
    max-width: 100%;
    aspect-ratio: auto;
    margin-bottom: 30px;
  }

  .about_text {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .about_text h2 {
    font-size: 2.2rem;
  }

  .about_text p {
    font-size: 1rem;
  }
}




/* accordeon */

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: #5c2964;
}

.faq p {
    max-width: 900px;
    padding-bottom: 20px;
    margin-top: 20px;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  max-width: 900px;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: '\02795';
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796";
}

/* hero */

.hero {
  padding: 200px 20px;
  color: #fff;
  text-align: center;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.45)),
    url(/assets/img/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.hero h2 {
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
    min-height: 300px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 10px;
    min-height: 250px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 0.9rem;
  }
}


/* advantages */

.advantages {
  padding: 60px 20px;
  background-color: #5c2964;
  text-align: center;
  margin: 0 auto;
}

.advantages h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 700;
}

.advantages ul {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.advantages li {
  background: #471f4d;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.advantages li:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.advantages li img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.advantages li h3 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .advantages ul {
    justify-content: center;
    gap: 20px;
  }
  .advantages li {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .advantages ul {
    flex-direction: column;
    gap: 15px;
  }
  .advantages li {
    flex: 1 1 100%;
    padding: 25px 15px;
  }
  .advantages h2 {
    font-size: 1.8rem;
  }
  .advantages li h3 {
    font-size: 1rem;
  }
}

/* title */

.title {
  background-color: #5c2964;
  padding: 70px 20px;
}

.title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #ffffff;
}

.title ul {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.title ul li {
  margin-bottom: 20px;
  padding-left: 35px;
  position: relative;
  font-weight: 400;
}

.title ul li::before {
  content: attr(data-emoji);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.6rem;
  line-height: 1;
}

.title ul li strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 480px) {
  .title h2 {
    font-size: 1.6rem;
  }

  .title ul {
    font-size: 1rem;
  }

  .title ul li {
    padding-left: 30px;
    margin-bottom: 16px;
  }

  .title ul li::before {
    font-size: 1.4rem;
    top: 2px;
  }
}


/* reviews */

.reviews {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
  color: #222;
}

.reviews h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #1a1a1a;
}

.review-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  margin-bottom: 25px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.review-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.review-item p:first-child {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f5a623;
  user-select: none;
}

.review-item p:nth-child(2) {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 18px;
}

.review-item p:last-child {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  text-align: right;
}

@media (max-width: 768px) {
  .reviews h2 {
    font-size: 1.9rem;
  }

  .review-item {
    padding: 20px 18px;
    max-width: 100%;
  }

  .review-item p:nth-child(2) {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .reviews h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .review-item {
    padding: 18px 15px;
  }

  .review-item p:first-child {
    font-size: 1.1rem;
  }

  .review-item p:nth-child(2) {
    font-size: 0.95rem;
  }

  .review-item p:last-child {
    font-size: 0.9rem;
  }
}


/* cta */

.cta {
background: #5c2964;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 16px;
  margin: 60px auto 80px;
  box-shadow: 0 10px 30px rgba(37, 117, 252, 0.4);
}

.cta h2 {
  font-size: 2.6rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta a {
  display: inline-block;
  background-color: #fff;
  color: #2575fc;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 117, 252, 0.5);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cta a:hover,
.cta a:focus {
  background-color: #1c54d3;
  color: #fff;
  transform: scale(1.05);
  outline: none;
}

@media (max-width: 600px) {
  .cta h2 {
    font-size: 2rem;
  }

  .cta a {
    font-size: 1.1rem;
    padding: 14px 30px;
  }
}

@media (max-width: 380px) {
  .cta h2 {
    font-size: 1.7rem;
  }

  .cta a {
    padding: 12px 24px;
  }
}


/* footer */

.footer {
  background-color: #1a1a1a;
  color: #ddd;
  padding: 40px 20px 60px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-menu-list,
.footer-menu-list-second {
  flex: 1 1 200px;
}

.footer-menu-list li,
.footer-menu-list-second li {
  margin-bottom: 15px;
}

.footer-menu-list a,
.footer-menu-list-second a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-menu-list a:hover,
.footer-menu-list-second a:hover {
  color: #57aaff;
}

.footer-menu-contact {
  flex: 1;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-menu-contact li {
  margin-bottom: 12px;
}

.footer-menu-contact iframe {
  width: 100%;
  max-width: 600px;
  height: 250px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-menu-contact iframe {
    height: 200px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-menu-list,
  .footer-menu-list-second,
  .footer-menu-contact {
    flex: 1 1 100%;
  }

  .footer-menu-contact {
    font-size: 0.9rem;
  }

  .footer-menu-contact iframe {
    height: 180px;
  }
}

/* 
courses page */

.courses {
  max-width: 1100px;
  margin: 80px auto 100px;
  padding: 0 20px;
  text-align: center;
  color: #1f2937;
  background: linear-gradient(135deg, #f9fafb 0%, #e2e8f0 100%);
  border-radius: 24px;
  box-shadow:
    0 20px 40px rgba(100, 100, 255, 0.15),
    inset 0 0 80px rgba(255, 255, 255, 0.7);
  padding-top: 60px;
  padding-bottom: 60px;
}

.courses h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 60px;
  letter-spacing: -0.03em;
  color: #3b82f6;
  text-shadow: 1px 1px 4px rgba(59, 130, 246, 0.5);
  user-select: none;
}

.course-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.course-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow:
    0 10px 20px rgba(59, 130, 246, 0.25),
    0 6px 8px rgba(59, 130, 246, 0.15);
  padding: 36px 32px 48px;
  flex: 1 1 320px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  cursor: default;
}

.course-card:hover,
.course-card:focus-within {
  transform: translateY(-22px) scale(1.06);
  box-shadow:
    0 26px 52px rgba(59, 130, 246, 0.45),
    0 12px 24px rgba(59, 130, 246, 0.35);
  outline: none;
}

.course-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 18px;
  text-align: left;
  line-height: 1.2;
  user-select: none;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 28px;
  text-align: left;
  user-select: none;
}

.course-card p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.55;
  text-align: left;
  flex-grow: 1;
  user-select: text;
  transition: color 0.3s ease;
}

.course-card:hover p {
  color: #1e40af;
}

.course-card a {
  margin-top: 28px;
  display: inline-block;
  text-align: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 9999px;
  text-decoration: none;
  box-shadow:
    0 6px 15px rgba(59, 130, 246, 0.5);
  user-select: none;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.3s ease;
}

.course-card a:hover,
.course-card a:focus {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow:
    0 10px 25px rgba(59, 130, 246, 0.7);
  transform: translateY(-4px);
  outline: none;
  cursor: pointer;
}


@media (max-width: 992px) {
  .course-cards {
    gap: 30px;
  }

  .course-card {
    max-width: 45%;
  }
}

@media (max-width: 600px) {
  .courses h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .course-cards {
    flex-direction: column;
    gap: 30px;
  }

  .course-card {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 28px 24px 40px;
  }

  .course-card h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .course-card p {
    font-size: 1rem;
  }

  .course-card a {
    font-size: 1rem;
    padding: 12px 24px;
  }
}



/* privacy */

.privacy {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
  color: #333;
  line-height: 1.65;
}

.privacy h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
  text-align: center;
}

.privacy h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #222;
}

.privacy p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #444;
}

.privacy ul {
  list-style: inside disc;
  margin-bottom: 25px;
  padding-left: 0;
  color: #555;
}

.privacy ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .privacy {
    padding: 0 15px;
  }

  .privacy h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .privacy h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .privacy p,
  .privacy ul li {
    font-size: 1rem;
  }
}

/* form */

form {
  max-width: 600px;
  margin: 40px auto;
  padding: 60px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.af-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.af-element label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 1rem;
}

.af-textWrap input[type="text"],
.af-textWrap input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
}

.af-textWrap input[type="text"]:focus,
.af-textWrap input[type="email"]:focus {
  outline: none;
  border-color: #0073e6;
  box-shadow: 0 0 6px rgba(0,115,230,0.4);
}

.buttonContainer input[type="submit"] {
  background-color: #5c2964;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buttonContainer input[type="submit"]:hover {
  background-color: #7d3888;
}

.privacyPolicy p,
.poweredBy p {
  font-size: 0.75rem;
  color: #666;
  margin: 8px 0 0;
}

.privacyPolicy a {
  color: #0073e6;
  text-decoration: none;
}

.privacyPolicy a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .contact {
    max-width: 90%;
    padding: 15px;
  }

  .buttonContainer input[type="submit"] {
    font-size: 1rem;
    padding: 12px;
  }
}

.contact-info-first {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px 25px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  color: #222;
  line-height: 1.6;
}

.contact-info-first h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c3e50;
  text-align: center;
}

.contact-info-first p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-align: center;
}

.contact-info-first h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #34495e;
  text-align: center;
}

.contact-info-first ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 320px;
}

.contact-info-first ul li {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  text-align: center;
  color: #555;
}

.contact-info-first ul li:last-child {
  border-bottom: none;
}

@media (max-width: 480px) {
  .contact-info-first {
    padding: 15px 20px;
    margin: 20px 10px;
  }

  .contact-info-first h2 {
    font-size: 1.5rem;
  }

  .contact-info-first p,
  .contact-info-first ul li {
    font-size: 1rem;
  }

  .contact-info-first ul {
    max-width: 100%;
  }
}


.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-popup p {
  margin: 0;
  flex: 1 1 60%;
}

.cookie-popup p a {
  color: #FFD700;
  text-decoration: underline;
}

.cookie-popup button {
  background: #FFD700;
  border: none;
  color: black;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  flex: 1 1 30%;
  max-width: 120px;
  margin-left: 20px;
  transition: background 0.3s ease;
}

.cookie-popup button:hover {
  background: #e6c200;
}

@media (max-width: 600px) {
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }

  .cookie-popup p, .cookie-popup button {
    flex: 1 1 100%;
    margin: 5px 0;
  }

  .cookie-popup button {
    margin-left: 0;
  }
}
