@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

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

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

a:hover {
  color: #7854b8;
}

ul {
  list-style: none;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  position: relative;
}

li::before {
  content: "•";
  color: #7854b8;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

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

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

.btn-primary {
  background-color: #7854b8;
  color: #ffffff;
}

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

.header {
  background-color: #000000;
  color: #ffffff;
  padding: 20px 0;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.hero {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("./assets/1.png");
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./assets/1.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

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

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

.benefits {
  padding: 60px 0;
}

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

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

@media (max-width: 768px) {
  .benefits-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.benefits-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.benefits-text p {
  margin-bottom: 20px;
}

.formations {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.formations .formation-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.formations .formation-card {
  background-color: #ffffff;
  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);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.formations .formation-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.formations .formation-card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.formations .formation-card-content {
  padding: 25px;
}

.formations .formation-card-content h3 {
  margin-bottom: 10px;
  color: #7854b8;
}

.formations .formation-card-content .price {
  font-weight: 700;
  margin-bottom: 15px;
}

.formations .formation-card-content ul {
  margin-bottom: 20px;
}

.why-choose {
  padding: 60px 0;
}

.why-choose h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.why-choose-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  -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;
}

.why-choose-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.why-choose-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.why-choose-card .icon.practical-approach {
  background-image: url("./assets/6.png");
}

.why-choose-card .icon.personalized-support {
  background-image: url("./assets/6.png");
}

.why-choose-card .icon.cross-expertise {
  background-image: url("./assets/7.png");
}

.why-choose-card .icon.flexibility {
  background-image: url("./assets/8.png");
}

.why-choose-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #7854b8;
}

.target-audience {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.target-audience h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .target-audience-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.target-audience-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.target-audience-text p {
  margin-bottom: 20px;
}

.contact {
  padding: 60px 0;
  background-image: url(./assets/11.png);
  background-position: center;
  background-size: cover;
}

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

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

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

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

.contact-form .form-group input:focus {
  outline: none;
  border-color: #7854b8;
}

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

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

.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: 30px;
}

@media (max-width: 768px) {
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.footer-links a {
  color: #ffffff;
}

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

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.footer-social a {
  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;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-social .social-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-social .social-icon.linkedin {
  background-image: url("./assets/in.png");
}

.footer-social .social-icon.facebook {
  background-image: url("./assets/f.png");
}

.footer-social .social-icon.instagram {
  background-image: url("./assets/inst.png");
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

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

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

.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: 15px;
}

@media (max-width: 480px) {
  .cookie-banner .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.thank-you-page .container {
  min-height: 75vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thank-you-content {
  text-align: center;
  padding: 80px 0;
}

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

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

.main-site {
  display: block;
}

.main-site.hidden {
  display: none;
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  section {
    padding: 40px 0;
  }
  .formation-card,
  .why-choose-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 20px;
  }
}

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

.policy h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 24px;
}
/*# sourceMappingURL=style.css.map */