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

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  text-decoration: none;
  color: #222222;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #5600ff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.highlight {
  color: #5600ff;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-primary {
  background-color: #5600ff;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #4500cc;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #5600ff;
  border: 1px solid #5600ff;
}

.btn-secondary:hover {
  background-color: #5600ff;
  color: #ffffff;
}

header {
  padding: 20px 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .header-content {
  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 h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #5600ff;
  margin: 0;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 30px;
}

header nav ul li a {
  font-weight: 600;
  font-size: 0.9rem;
}

.cookies-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookies-popup.show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

.cookies-popup .cookies-content {
  text-align: center;
}

.cookies-popup .cookies-content .cookie-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.cookies-popup .cookies-content .cookie-icon img {
  width: 100%;
  height: auto;
}

.cookies-popup .cookies-content h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #5600ff;
}

.cookies-popup .cookies-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cookies-popup .cookies-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.hero {
  padding: 60px 0;
  background-color: #f5f5ff;
  overflow: hidden;
}

.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.hero .hero-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero .hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero .hero-text p {
  margin-bottom: 30px;
  font-size: 1rem;
}

.hero .hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero .hero-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.transformation {
  background-color: #ffffff;
}

.transformation p {
  line-height: 1.8;
}

.history {
  background-color: #f8f8f8;
}

.history .history-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.history .history-content p {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  line-height: 1.8;
}

.history .history-content .history-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.history .history-content .history-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.courses .course-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.courses .course-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.courses .course-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.courses .course-card .course-image {
  height: 180px;
  overflow: hidden;
}

.courses .course-card .course-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.courses .course-card .course-content {
  padding: 20px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.courses .course-card .course-content .course-icon {
  position: absolute;
  top: -25px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #5600ff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.courses .course-card .course-content .course-icon img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses .course-card .course-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.courses .course-card .course-content p {
  font-size: 0.9rem;
  color: #777777;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.courses .course-card .course-content .course-footer {
  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;
  margin-top: auto;
}

.courses .course-card .course-content .course-footer .course-price {
  font-weight: 700;
  color: #222222;
}

.courses .course-card .course-content .course-footer .btn {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.blog {
  background-color: #f8f8f8;
}

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

.blog .blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

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

.blog .blog-card .blog-image {
  height: 180px;
  overflow: hidden;
}

.blog .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.blog .blog-card:hover .blog-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog .blog-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.1rem;
}

.blog .blog-card p {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: #777777;
  margin-top: auto;
}

.contact {
  background-color: #ffffff;
}

.contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .contact-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-text .section-title {
  text-align: left;
}

.contact .contact-text .contact-info {
  margin-top: 30px;
}

.contact .contact-text .contact-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact .contact-form-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-form-container form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact .contact-form-container form .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-container form .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact .contact-form-container form .form-group input:focus {
  outline: none;
  border-color: #5600ff;
}

.contact .contact-form-container form .form-group input::-webkit-input-placeholder {
  color: #777777;
  opacity: 0.7;
}

.contact .contact-form-container form .form-group input:-ms-input-placeholder {
  color: #777777;
  opacity: 0.7;
}

.contact .contact-form-container form .form-group input::-ms-input-placeholder {
  color: #777777;
  opacity: 0.7;
}

.contact .contact-form-container form .form-group input::placeholder {
  color: #777777;
  opacity: 0.7;
}

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

.success-page {
  padding: 80px 0;
  min-height: calc(100vh - 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5ff;
}

.success-page .success-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.success-page .success-message {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.success-page .success-message h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.success-page .success-message p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.success-page .success-message .btn {
  margin-top: 10px;
}

.success-page .success-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.success-page .success-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

footer {
  background-color: #222222;
  color: #ffffff;
  padding: 40px 0 20px;
}

footer .footer-content {
  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;
  margin-bottom: 20px;
}

footer .footer-logo h2 {
  color: #5600ff;
  margin: 0;
  font-size: 1.8rem;
}

footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

footer .footer-links a {
  color: #ffffff;
  font-size: 0.9rem;
}

footer .footer-links a:hover {
  color: #5600ff;
}

footer .copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyright p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (max-width: 1200px) {
  .hero h2 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 50px 0;
  }
  .hero .hero-content,
  .history .history-content,
  .contact .contact-content,
  .success-page .success-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero .hero-text,
  .hero .hero-image,
  .history-content p,
  .history-content .history-image,
  .contact-text,
  .contact-form-container,
  .success-message,
  .success-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
  }
  .hero .hero-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .hero .hero-image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 30px;
  }
  .contact .section-title,
  .contact .contact-info {
    text-align: center;
  }
  .history-content .history-image {
    margin-top: 30px;
  }
  .course-grid {
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  header .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .logo {
    margin-bottom: 15px;
  }
  header nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header nav ul li {
    margin: 5px 10px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .course-grid {
    -ms-grid-columns: (minmax(100%, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .blog-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  .hero h2 {
    font-size: 1.6rem;
  }
  .cookies-popup {
    width: 95%;
    padding: 15px;
  }
  .cookies-content h3 {
    font-size: 1.1rem;
  }
  .cookies-content p {
    font-size: 0.8rem;
  }
  .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/*# sourceMappingURL=style.css.map */