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

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn-primary {
  background-color: #94e180;
  color: #1a1a1a;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #5c00fc;
  color: #fff;
  z-index: 1000;
  padding: 20px;
}

.cookie-popup .cookie-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookie-popup .cookie-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cookie-popup .cookie-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-popup .cookie-content button {
  background-color: #94e180;
  color: #1a1a1a;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-popup .cookie-content button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header {
  padding: 15px 0;
  background-color: #f5f5f5;
  position: relative;
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo {
  font-size: 20px;
  font-weight: 700;
  color: #5c00fc;
}

.hero {
  background-color: #5c00fc;
  color: #fff;
  padding: 80px 0;
}

.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero .hero-content p {
  margin-bottom: 30px;
  font-size: 18px;
  opacity: 0.9;
}

.growth-pillars {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.growth-pillars h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.growth-pillars .pillars-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.growth-pillars .pillars-grid .pillar-item {
  text-align: center;
}

.growth-pillars .pillars-grid .pillar-item .pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.growth-pillars .pillars-grid .pillar-item .pillar-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.growth-pillars .pillars-grid .pillar-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.growth-pillars .pillars-grid .pillar-item p {
  font-size: 14px;
  color: #666666;
}

.education-core {
  padding: 60px 0;
}

.education-core h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.education-core .courses-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.education-core .courses-container .course-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .education-core .courses-container .course-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.education-core .courses-container .course-item .course-image {
  height: 100%;
  min-height: 200px;
}

.education-core .courses-container .course-item .course-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.education-core .courses-container .course-item .course-content {
  padding: 25px;
}

.education-core .courses-container .course-item .course-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.education-core .courses-container .course-item .course-content p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #666666;
}

.learning-together {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.learning-together .learning-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.learning-together .learning-content h2 {
  color: #5c00fc;
  font-size: 28px;
  margin-bottom: 20px;
}

.learning-together .learning-content p {
  margin-bottom: 30px;
  font-size: 16px;
}

.mentoring {
  padding: 60px 0;
}

.mentoring .mentoring-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.mentoring .mentoring-content h2 {
  color: #5c00fc;
  font-size: 28px;
  margin-bottom: 20px;
}

.mentoring .mentoring-content p {
  margin-bottom: 30px;
  font-size: 16px;
}

.contact {
  padding: 60px 0;
  background-color: #5c00fc;
  color: #fff;
}

.contact .contact-content {
  max-width: 500px;
  margin: 0 auto;
}

.contact .contact-content h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.contact .contact-content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.contact .contact-content form .form-group {
  width: 100%;
}

.contact .contact-content form .form-group input,
.contact .contact-content form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.contact .contact-content form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact .contact-content form button {
  background-color: #94e180;
  color: #1a1a1a;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  width: 100%;
}

.contact .contact-content form button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
  padding: 30px 0;
  background-color: #f5f5f5;
}

footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  text-align: center;
}

footer .footer-content .logo {
  font-size: 20px;
  font-weight: 700;
  color: #5c00fc;
}

footer .footer-content .copyright {
  font-size: 14px;
  color: gray;
}

footer .footer-content .links {
  font-size: 14px;
}

footer .footer-content .links a {
  color: #5c00fc;
}

footer .footer-content .links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content h1 {
    font-size: 26px;
  }
  .hero .hero-content p {
    font-size: 16px;
  }
  .growth-pillars .pillars-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .course-item .course-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .growth-pillars .pillars-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cookie-popup .cookie-content h2 {
    font-size: 22px;
  }
  .cookie-popup .cookie-content p {
    font-size: 14px;
  }
  .education-core h2,
  .learning-together .learning-content h2,
  .mentoring .mentoring-content h2,
  .contact .contact-content h2 {
    font-size: 24px;
  }
}

.privacy{
  padding-top: 50px;
  padding-bottom: 50px;
  h1{
    margin-bottom: 32px;
    font-style: 32px;
    text-align: center;
  }
}
.success-content{
  min-height: 70dvh;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
}