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

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  color: #4a90e2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

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

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
}

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

@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}

p {
  margin-bottom: 1.5rem;
}

ul,
ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

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

.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn: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);
}

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

.btn-primary {
  background-color: #1e1644;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0d0a1d;
  color: #fff;
}

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

.btn-secondary:hover {
  background-color: #1e1644;
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e1644;
  color: #fff;
  padding: 1rem 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner .cookie-container {
  max-width: 800px;
  text-align: center;
  padding: 0 1rem;
}

.cookie-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-banner .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .cookie-banner .cookie-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1e1644;
  color: #fff;
  padding: 1rem 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.header .logo a {
  color: #fff;
}

.header .logo a:hover {
  color: #e9ecef;
}

.header .main-nav {
  display: none;
}

@media (min-width: 992px) {
  .header .main-nav {
    display: block;
  }
}

.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header .main-nav ul li {
  margin-left: 1.5rem;
}

.header .main-nav ul li a {
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

.header .main-nav ul li a:hover, .header .main-nav ul li a.active {
  color: #e9ecef;
}

.header .main-nav ul li a:hover:after, .header .main-nav ul li a.active:after {
  width: 100%;
}

.header .main-nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e9ecef;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header .main-nav ul li a.nav-cta {
  background-color: #4a90e2;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.header .main-nav ul li a.nav-cta:hover {
  background-color: #2275d7;
}

.header .main-nav ul li a.nav-cta:hover:after {
  display: none;
}

.header .main-nav ul li a.nav-cta:after {
  display: none;
}

.header .mobile-menu-toggle {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .header .mobile-menu-toggle {
    display: none;
  }
}

.header .mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #1e1644;
  padding: 1rem 0;
  z-index: 99;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav ul li a {
  color: #fff;
  font-weight: 600;
  display: block;
}

.mobile-nav ul li a:hover {
  color: #e9ecef;
}

.mobile-nav ul li a.nav-cta {
  background-color: #4a90e2;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-align: center;
  margin-top: 0.5rem;
}

.mobile-nav ul li a.nav-cta:hover {
  background-color: #2275d7;
}

.hero, .success {
  background-color: #1e1644;
  color: #fff;
  padding: 8rem 0 4rem;
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero .container, .success .container {
  max-width: 900px;
}

.hero h1, .success h1 {
  margin-bottom: 1.5rem;
}

.hero p, .success p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero p, .success p {
    font-size: 1.25rem;
  }
}

.hero .btn, .success .btn {
  margin-top: 1rem;
}

section {
  padding: 4rem 0;
}

section h2 {
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}

section h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #4a90e2;
  margin: 1rem auto 0;
}

.intro .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 992px) {
  .intro .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}

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

.intro .intro-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.intro .intro-content h2:after {
  margin: 1rem 0 0;
}

.intro .intro-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .intro .intro-image {
    margin-top: 0;
  }
}

.intro .intro-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services {
  background-color: #f8f9fa;
}

.services .services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services .services-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services .services-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.services .service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  -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: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services .service-card h3 {
  color: #1e1644;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.services .service-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #4a90e2;
}

.services .service-card p {
  margin-bottom: 0;
}

.packages .package-cards {
  margin-top: 3rem;
}

.packages .package-card {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 3rem;
}

.packages .package-card .package-image {
  height: 300px;
  overflow: hidden;
}

.packages .package-card .package-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;
}

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

.packages .package-card .package-content {
  padding: 2rem;
}

.packages .package-card .package-content h3 {
  color: #1e1644;
  margin-bottom: 1rem;
}

.packages .package-card .package-content h4 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.packages .package-card .package-content ul {
  margin-bottom: 1.5rem;
}

.packages .package-card .package-content .package-details {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.packages .package-card .package-content .package-details p {
  margin-bottom: 0.5rem;
}

.packages .package-card .package-content .package-details p:last-child {
  margin-bottom: 0;
}

.packages .package-card .package-content .package-details .price {
  font-size: 1.25rem;
  color: #1e1644;
}

.mentoring {
  background-color: #f8f9fa;
}

.mentoring .mentoring-image {
  margin-top: 2rem;
}

.mentoring .mentoring-image img {
  border-radius: 8px;
  -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%;
}

.about .about-image {
  margin-top: 2rem;
}

.about .about-image img {
  border-radius: 8px;
  -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%;
}

.contact {
  background-color: #f8f9fa;
  text-align: center;
}

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

.contact .contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact .contact-form .form-group input {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact .contact-form .form-group input:focus {
  outline: none;
  border-color: #4a90e2;
  -webkit-box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
          box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.contact .contact-form button {
  width: 100%;
  padding: 1rem;
}

.footer {
  background-color: #1e1644;
  color: #fff;
  padding: 2rem 0;
}

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

@media (min-width: 768px) {
  .footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer .footer-links {
  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;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer .footer-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
  }
}

.footer .footer-links a {
  color: #fff;
  margin: 0.5rem;
  font-size: 0.9rem;
}

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

.footer .footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

@media (min-width: 768px) {
  .footer .footer-copyright {
    text-align: right;
  }
}

.footer .footer-copyright p {
  margin-bottom: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeIn {
  -webkit-animation: fadeIn 0.5s ease forwards;
          animation: fadeIn 0.5s ease forwards;
}

.policy {
  margin-top: 100px;
  margin-bottom: 100px;
}

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