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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
}

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

a:hover {
  color: #346daa;
}

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

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

.btn.btn-primary {
  background-color: #4a86c7;
  color: white;
}

.btn.btn-primary:hover {
  background-color: #346daa;
}

.btn.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn.btn-secondary:hover {
  background-color: #545b62;
}

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner .cookie-content {
  background-color: white;
  padding: 30px;
  border-radius: 4px;
  max-width: 600px;
  text-align: center;
}

.cookie-banner .cookie-content h2 {
  margin-top: 0;
}

.cookie-banner .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.header {
  background-color: #4a86c7;
  color: white;
  padding: 15px 0;
  text-align: center;
}

.header .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("./assets/hero.png");
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./assets/hero.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
}

.hero .hero-content {
  max-width: 600px;
}

.hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.courses {
  padding: 80px 0;
  background-color: white;
}

.courses .courses-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.courses .course-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.courses .course-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.courses .course-card .course-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.courses .course-card h3 {
  padding: 20px 20px 10px;
  font-size: 1rem;
  font-weight: 700;
}

.courses .course-card p {
  padding: 0 20px 20px;
  font-size: 0.9rem;
}

.ai-investment {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.ai-investment .container {
  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;
}

.ai-investment .ai-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.ai-investment .ai-content {
  width: 100%;
}

.ai-investment .ai-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.path-to-pro {
  padding: 80px 0;
  background-color: white;
}

.path-to-pro p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.path-to-pro .stats-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}

.path-to-pro .stat-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
  text-align: center;
  margin-bottom: 30px;
}

.path-to-pro .stat-item h3 {
  color: #4a86c7;
  font-size: 1.1rem;
  font-weight: 700;
}

.course-levels {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.course-levels p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.course-levels .levels-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.course-levels .level-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.course-levels .level-card .level-image {
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

.course-levels .level-card .level-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.course-levels .level-card h3 {
  color: #4a86c7;
}

.benefits {
  padding: 80px 0;
  background-color: white;
}

.benefits .benefits-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.benefits .benefit-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.benefits .benefit-card .benefit-image {
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

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

.benefits .benefit-card h3 {
  margin-bottom: 15px;
  color: #4a86c7;
}

.contact {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
}

.contact form input:focus {
  outline: none;
  border-color: #4a86c7;
}

.contact form button {
  width: 100%;
}

.footer {
  background-color: #333;
  color: white;
  padding: 40px 0;
}

.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;
  text-align: center;
}

.footer .footer-logo {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer .footer-links {
  margin-bottom: 20px;
}

.footer .footer-links a {
  color: white;
  margin: 0 10px;
}

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

.footer .footer-address {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .courses .courses-grid {
    -ms-grid-columns: 1fr 1fr ;
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .benefits-container,
  .levels-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefit-card,
  .level-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .hero {
    padding: 60px 0;
  }
  .courses .courses-grid {

        -ms-grid-columns:1fr;
          grid-template-columns: repeat(1, 1fr);
  }
  .stats-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stat-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }
  .btn {
    padding: 10px 20px;
  }
  .cookie-content {
    padding: 20px;
    margin: 0 10px;
  }
  .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.thx, .privacy {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #4a86c7;
}

.thx-content {
  text-align: center;
  background: #fff;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy-content {
  background: #fff;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
/*# sourceMappingURL=style.css.map */