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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
}

section {
  padding: 60px 0;
}

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

.btn-primary {
  background-color: #2323ff;
  color: white;
}

.btn-primary:hover {
  background-color: #0000ef;
}

.btn-secondary {
  background-color: #f2f2f2;
  color: #333;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px;
  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;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.cookie-banner .cookie-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cookie-banner .cookie-content h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.cookie-banner .cookie-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-banner .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header {
  padding: 20px 0;
  background-color: white;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px 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 {
  font-size: 1.5rem;
  font-weight: 700;
}

.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.header .main-nav ul li a {
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header .main-nav ul li a:hover {
  color: #2323ff;
}

.header .mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.header .mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
}

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

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

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

.hero .hero-text h1 {
  color: white;
  padding: 40px;
  background-color: #2323ff;
}

.hero .hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.about {
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto 30px;
}

.focus-areas {
  background-color: #f9f9f9;
}

.focus-areas h2 {
  text-align: center;
  margin-bottom: 40px;
}

.focus-areas .focus-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.focus-areas .focus-cards .focus-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.focus-areas .focus-cards .focus-card h3 {
  margin-bottom: 15px;
}

.focus-areas .focus-cards .focus-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.course-areas h2 {
  text-align: center;
  margin-bottom: 40px;
}

.course-areas .course-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.course-areas .course-columns .course-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
}

.course-areas .course-columns .course-column h3 {
  margin-bottom: 20px;
}

.course-areas .course-columns .course-column ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.course-areas .course-columns .course-column ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #2323ff;
  border-radius: 50%;
}

.course-areas .course-image {
  border-radius: 8px;
  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);
}

.learning-model {
  background-color: #f9f9f9;
}

.learning-model h2 {
  text-align: center;
  margin-bottom: 40px;
}

.learning-model .model-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.learning-model .model-steps .model-step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 230px;
}

.learning-model .model-steps .model-step .step-image {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.learning-model .model-steps .model-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.learning-model .model-steps .model-step p {
  font-size: 0.9rem;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

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

.contact form .form-group input,
.contact form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.contact form .form-group input:focus,
.contact form .form-group textarea:focus {
  outline: none;
  border-color: #2323ff;
}

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

.contact form button {
  width: 100%;
}

.success-message {
  text-align: center;
  padding: 100px 0;
  min-height: 60vh;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.success-message h1 {
  margin-bottom: 40px;
}

.success-message .success-button {
  margin-top: 30px;
}

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

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

.footer .footer-info p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer .footer-info p a {
  color: white;
  text-decoration: underline;
}

.footer .footer-info p a:hover {
  color: #ccc;
}

.footer .footer-copyright {
  font-size: 0.9rem;
}

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

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

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

@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .hero .hero-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .focus-areas .focus-card {
    min-width: calc(50% - 15px);
  }
  .course-areas .course-column {
    min-width: calc(50% - 15px);
  }
  .learning-model .model-step {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .header .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .header .main-nav.active {
    display: block;
  }
  .header .main-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .header .main-nav ul li a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .header .main-nav ul li a:hover {
    background-color: #f9f9f9;
  }
  .header .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cookie-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .cookie-banner .cookie-content {
    margin-bottom: 20px;
  }
  .cookie-banner .cookie-buttons {
    width: 100%;
  }
  .cookie-banner .cookie-buttons button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .focus-areas .focus-card {
    min-width: 100%;
    margin-bottom: 20px;
  }
  .course-areas .course-column {
    min-width: 100%;
  }
  .learning-model .model-step {
    min-width: 100%;
    margin-bottom: 30px;
  }
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer .footer-content .footer-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
  .hero {
    padding: 50px 0;
  }
  .btn {
    display: block;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */