/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    padding: 0.5rem;
    background: linear-gradient(135deg, #1e293b, #0891b2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    color: #475569;
}

.nav-link:hover {
    color: #0891b2;
    background: #f0fdfa;
    border-color: #67e8f9;
}

.nav-link.active {
    background: #0891b2;
    color: white;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.cta-button {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0e7490, #155e75);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #475569;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background: #f1f5f9;
}

.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    padding: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    color: #475569;
}

.mobile-nav-link:hover {
    color: #0891b2;
    background: #f0fdfa;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #0e7490, #155e75);
}

/* Main Content */
main {
    padding-top: 4rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #0891b2 100%);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content-center {
    position: relative;
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #67e8f9, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a7f3d0;
    font-weight: 300;
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-features {
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card i {
    font-size: 2rem;
    color: #67e8f9;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.hero-features-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.feature-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a7f3d0;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0e7490, #155e75);
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: scale(1.05);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #0891b2;
    transform: translateY(-8px);
}

.service-icon {
    display: inline-flex;
    padding: 1rem;
    background: linear-gradient(135deg, #1e293b, #0891b2);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-link {
    color: #0891b2;
    font-weight: 600;
    transition: color 0.2s ease;
}

.service-card:hover .service-link {
    color: #0e7490;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    display: inline-flex;
    padding: 0.75rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc, #f0fdfa);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #cbd5e1;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author .author-name {
    font-weight: 600;
    color: #1e293b;
}

.testimonial-author .author-role {
    color: #64748b;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b, #0891b2);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #a7f3d0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Formations Page Styles */
.formations-section {
    padding: 5rem 0;
}

.formations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.formation-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.formation-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.formation-card.popular {
    border-color: #0891b2;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.formation-content {
    padding: 2rem;
}

.formation-level {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.formation-level.beginner {
    background: #dcfce7;
    color: #166534;
}

.formation-level.intermediate {
    background: #fef3c7;
    color: #92400e;
}

.formation-level.all-levels {
    background: #dbeafe;
    color: #1e40af;
}

.formation-level.expert {
    background: #f3e8ff;
    color: #7c3aed;
}

.formation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.formation-card > .formation-content > p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.formation-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.detail-item i {
    color: #0891b2;
    flex-shrink: 0;
}

.detail-item span {
    color: #475569;
}

.formation-modules {
    margin-bottom: 1.5rem;
}

.formation-modules h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.formation-modules ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.formation-modules li {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #64748b;
}

.formation-modules li i {
    color: #0891b2;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.formation-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

/* Additional Info Section */
.additional-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #f0fdfa);
}

.info-content {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.info-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Acculturation Page Styles */
.modules-section {
    padding: 5rem 0;
}

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

.module-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    transition: all 0.3s ease;
}

.module-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.module-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.module-number {
    background: #0891b2;
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.module-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.module-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.module-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0891b2;
    font-weight: 500;
}

.module-objectives h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.module-objectives ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.module-objectives li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.module-objectives li i {
    color: #10b981;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Target Audiences */
.target-audiences {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #f0fdfa);
}

.audiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.audience-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.audience-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.audience-icon {
    display: inline-flex;
    padding: 0.75rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.audience-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.audience-features {
    margin-bottom: 1.5rem;
}

.audience-features h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.audience-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.audience-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.audience-features li i {
    color: #10b981;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.audience-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    display: inline-flex;
    padding: 1rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Platform Page Styles */
.platform-features {
    padding: 5rem 0;
}

.learning-paths {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #f0fdfa);
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.path-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.path-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.path-level {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.path-level.beginner {
    background: #dcfce7;
    color: #166534;
}

.path-level.intermediate {
    background: #fef3c7;
    color: #92400e;
}

.path-level.expert {
    background: #f3e8ff;
    color: #7c3aed;
}

.path-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.path-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.path-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.platform-benefits {
    padding: 5rem 0;
    background: white;
}

.platform-benefits .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.platform-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
    border-radius: 0.5rem;
    text-align: left;
}

.platform-benefits .benefit-item i {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.platform-benefits .benefit-item span {
    color: #475569;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 2rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-image {
    margin-top: 1.5rem;
}

.form-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-image p {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.why-contact {
    margin-top: 2rem;
    background: linear-gradient(135deg, #1e293b, #0891b2);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
}

.why-contact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.why-icon {
    flex-shrink: 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.why-icon i {
    color: #a7f3d0;
}

.why-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.why-item p {
    color: #a7f3d0;
    font-size: 0.875rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0fdfa);
    border-radius: 1rem;
    border: 1px solid #cbd5e1;
}

.info-icon {
    flex-shrink: 0;
    padding: 0.75rem;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-radius: 0.5rem;
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #475569;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.info-item span {
    font-size: 0.875rem;
    color: #64748b;
}

.schedule-info {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 2rem;
}

.schedule-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.schedule-item span:first-child {
    color: #475569;
}

.schedule-item span:last-child {
    font-weight: 500;
    color: #1e293b;
}

.schedule-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0fdfa;
    border-radius: 0.5rem;
}

.schedule-note p {
    font-size: 0.875rem;
    color: #0f766e;
}

.map-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.map-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.map-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: #64748b;
}

.map-iframe {
    height: 20rem;
}

.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #f0fdfa);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    max-width: 28rem;
    margin: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-icon {
    margin-bottom: 1.5rem;
}

.modal-icon i {
    font-size: 4rem;
    color: #10b981;
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-main {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-info {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-contact li {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons,
    .cta-buttons,
    .info-buttons {
        flex-direction: row;
    }

    .hero-features-inline {
        flex-direction: row;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .cta-button {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audiences-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paths-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .module-content {
        grid-template-columns: 2fr 2fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .formations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .platform-benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}