*,
*::before,
*::after {
  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: #f9f9f9;
}

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#f59a23), to(#db800a));
  background: linear-gradient(to right, #f59a23, #db800a);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}

.btn-primary:hover {
  background: -webkit-gradient(linear, left top, right top, from(#f38f0b), to(#c37209));
  background: linear-gradient(to right, #f38f0b, #c37209);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f59a23;
  color: #fff;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-banner .cookie-content h2 {
  margin-bottom: 10px;
}

.cookie-banner .cookie-content p {
  margin-bottom: 20px;
}

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

.cookie-banner .cookie-buttons .btn-cookie {
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-banner .cookie-buttons .btn-cookie.btn-accept {
  background-color: #fff;
  color: #333;
}

.cookie-banner .cookie-buttons .btn-cookie.btn-accept:hover {
  background-color: #e6e6e6;
}

.cookie-banner .cookie-buttons .btn-cookie.btn-decline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-banner .cookie-buttons .btn-cookie.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header {
  background-color: #a62800;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.header h1 {
  margin: 0;
}

.hero {
  background: #fff;
  background-size: cover;
  background-position: center;
  color: #333;
  padding: 80px 0;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero .hero-content img {
  margin-bottom: 32px;
}

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

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

.why-wait {
  padding: 60px 0;
  background-color: #7C2100;
  color: #fff;
}

.why-wait .container {
  max-width: 800px;
  text-align: center;
}

.why-wait p {
  font-size: 1.1rem;
}

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

.courses .container > p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.courses h2 {
  color: #a62800;
  text-align: center;
  margin-bottom: 20px;
}

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

.courses .course-card {
  background-color: #fff;
  border-radius: 10px;
  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: -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;
}

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

.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;
}

.courses .course-card h3 {
  padding: 20px 20px 10px;
  color: #a62800;
}

.courses .course-card p {
  padding: 0 20px 20px;
}

.investment-areas {
  padding: 60px 0;
  background-color: #fff;
}

.investment-areas .container > p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.investment-areas h2 {
  color: #a62800;
  text-align: center;
}

.investment-areas .areas-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.investment-areas .area-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.investment-areas .area-item .area-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f59a23;
  color: #fff;
  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;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.investment-areas .area-item .area-text {
  font-weight: 600;
}

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

.testimonials h2 {
  color: #a62800;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials img {
  max-width: 200px;
  width: 100%;
  margin: 0 auto 20px;
}

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

.testimonials .testimonial-card {
  background-color: #f59a23;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  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;
}

.testimonials .testimonial-card h3 {
  margin-bottom: 15px;
}

.testimonials .testimonial-card p {
  font-style: italic;
  margin-bottom: 0;
}

.registration {
  padding: 60px 0;
  background-color: #333;
  background-image: url("./assets/form-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.registration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.registration .container {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.registration h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

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

.registration .registration-form .form-group input {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.registration .registration-form .form-group input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #f59a23;
          box-shadow: 0 0 0 2px #f59a23;
}

.registration .registration-form button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.footer {
  background-color: #a62800;
  color: #fff;
  padding: 20px 0;
}

.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.footer .footer-links a {
  color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer .footer-links a:hover {
  opacity: 0.8;
}

.success-message {
  margin-top: 100px;
  margin-bottom: 100px;
  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;
  text-align: center;
}

.success-message .container {
  max-width: 600px;
}

.success-message h2 {
  color: #a62800;
  margin-bottom: 20px;
}

.success-message p {
  margin-bottom: 30px;
}

.success-message .btn-primary {
  display: inline-block;
}

header a {
  font-size: 24px;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content h2 {
    font-size: 2rem;
  }
  .hero .hero-content p {
    font-size: 1rem;
  }
  .why-wait,
  .courses,
  .investment-areas,
  .testimonials,
  .registration {
    padding: 40px 0;
  }
  .course-grid,
  .testimonial-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .areas-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .hero .hero-content h2 {
    font-size: 1.8rem;
  }
  .cookie-banner .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.policy {
  margin-top: 100px;
  margin-bottom: 100px;
}
/*# sourceMappingURL=style.css.map */