:root {
    --primary: #7c3aed;
    --secondary: #8b5cf6;
    --accent: #a78bfa;
    --background: #f5f3ff;
    --surface: #ffffff;
    --text: #4c1d95;
    --muted: #ddd6fe;
    --gradient-start: #a78bfa;
    --gradient-end: #f472b6;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.nav-link-separator {
    color: var(--accent);
    padding: 0 0.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding-top: 3rem;
    position: relative;
}

.min-vh-75 {
    min-height: 75vh;
}

.trust-bar {
    background: rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    border-top: 1px solid rgba(167, 139, 250, 0.3);
}

.trust-item {
    padding: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--muted);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-card:hover .service-details {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.full-width-divider {
    height: 400px;
    overflow: hidden;
}

.full-width-divider img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.process-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-info h3 {
    color: var(--text);
}

.training-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.training-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.training-content {
    padding: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: white;
}

.author-position {
    font-size: 0.9rem;
    color: var(--muted);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    margin-bottom: 1rem;
    border-radius: 8px;
}

.accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(124, 58, 237, 0.2);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.accordion-body {
    color: var(--muted);
}

.cta-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(139, 92, 246, 0.9));
    color: white;
}

.footer {
    margin-top: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero {
    padding: 4rem 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-content {
    padding: 1.5rem;
}

.team-role {
    color: var(--accent);
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: var(--muted);
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.approach-icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.process-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.process-card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.format-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.format-card:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--accent);
}

.format-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.format-features li {
    padding: 0.25rem 0;
    color: var(--muted);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.program-info {
    background: rgba(167, 139, 250, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1rem;
    border-radius: 4px;
}

.program-detail {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.program-topics {
    margin-top: 1.5rem;
}

.topics-list, .topics-list-dark {
    list-style: none;
    padding: 0;
}

.topics-list li, .topics-list-dark li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.topics-list li {
    color: var(--muted);
}

.topics-list-dark li {
    color: var(--text);
}

.topics-list li::before, .topics-list-dark li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.additional-program-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.additional-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.custom-program-box {
    background: rgba(167, 139, 250, 0.1);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 3rem;
}

.custom-feature h3 {
    color: white;
}

.contact-form .form-control, .contact-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: white;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.25);
}

.contact-form .form-control::placeholder {
    color: var(--muted);
}

.contact-form .form-label {
    color: white;
    font-weight: 600;
}

.contact-form .form-control.error {
    border-color: #dc3545;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent);
}

.legal-content {
    color: var(--muted);
}

.legal-content h2 {
    color: white;
    margin-top: 2rem;
}

.legal-content h3 {
    color: white;
}

.legal-content ul {
    margin-left: 1.5rem;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content a:hover {
    color: white;
}

.swiper {
    padding-bottom: 3rem;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent);
}

.swiper-pagination-bullet {
    background: var(--muted);
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

@media (max-width: 991px) {
    .nav-link-separator {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 2rem;
    }
    
    .trust-bar {
        margin-top: 2rem;
    }
    
    .full-width-divider {
        height: 250px;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}