/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: #333;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #7b42b3;
}

ul {
    list-style: none;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0 20px 0 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    align-items: center;
}

.cookie-buttons button {
    background-color: #7b42b3;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-right: 15px;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-buttons a {
    color: #fff;
    text-decoration: underline;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7b42b3;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background-color: #0a1929;
    color: #fff;
    padding: 80px 0;
    background-image: linear-gradient(rgba(10, 25, 41, 0.8), rgba(10, 25, 41, 0.8)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-button {
    background-color: #7b42b3;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #6635a3;
}

/* Oferta Educativa Section */
.oferta-educativa {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.oferta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.oferta-image {
    flex: 1;
    min-width: 300px;
}

.oferta-text {
    flex: 1;
    min-width: 300px;
}

.oferta-text h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.oferta-text h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #7b42b3;
}

/* Cursos Section */
.cursos {
    padding: 80px 0;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.curso-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.curso-item h3 {
    color: #7b42b3;
    font-size: 22px;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    font-size: 18px;
    color: #7b42b3;
    margin-top: 20px;
}

/* Por Qué Elegirnos Section */
.porque-elegirnos {
    padding: 80px 0;
    background-color: #7b42b3;
    color: #fff;
    text-align: center;
}

.porque-elegirnos h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 40px;
}

.elegirnos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.elegirnos-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: transform 0.3s;
}

.elegirnos-item:hover {
    transform: translateY(-10px);
}

.icon {
    width: 100%;
    
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.2);
    
}

.elegirnos-item h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Formación Section */
.formacion {
    padding: 80px 0;
    text-align: center;
}

.formacion h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.formacion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.formacion-item {
    padding: 20px;
    background-color: #f5f5f5;
    background-image: url(../images/bcg.png);
    background-size: cover;
    border-radius: 5px;
    transition: transform 0.3s;
    color: #fff;
}

.formacion-item:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.formacion-item h3 {
    font-size: 18px;
    color: #7b42b3;
    margin-bottom: 15px;
}

/* Liderazgo Section */
.liderazgo {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.liderazgo-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.liderazgo-text {
    flex: 1;
    min-width: 300px;
}

.liderazgo-image {
    flex: 1;
    min-width: 300px;
}

.liderazgo h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

/* Contacto Section */
.contacto {
    padding: 80px 0;
    text-align: center;
}

.contacto h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contacto > p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-button {
    background-color: #7b42b3;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #6635a3;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #0a1929;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    color: #fff;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.thank-you h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #7b42b3;
}

.thank-you p {
    max-width: 600px;
    margin-bottom: 30px;
}

.return-button {
    display: inline-block;
    background-color: #7b42b3;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.return-button:hover {
    background-color: #6635a3;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .elegirnos-grid,
    .formacion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .burger-menu {
        display: block;
    }
    
    .navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .elegirnos-grid,
    .formacion-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .oferta-educativa,
    .cursos,
    .porque-elegirnos,
    .formacion,
    .liderazgo,
    .contacto {
        padding: 50px 0;
    }
}

              
              .page {
                padding: 80px 15px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                