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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

.logo-icon {
    font-size: 28px;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.scarcity-message {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 40px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-cta {
    font-size: 18px;
    padding: 16px 32px;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #f8fafc;
}

.trust h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e40af;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e40af;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Logos Section */
.logos {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.logos h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #1e40af;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(0.5);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
}

.logo-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e40af;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 80px;
}

.service-icon svg {
    transition: transform 0.3s ease;
}

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

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e40af;
}

.service-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
}

.service-item li {
    color: #059669;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e40af;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-photo {
    margin-bottom: 20px;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1e40af;
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.testimonial-rating {
    margin-top: 15px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e40af;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #3b82f6;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e40af;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.pricing-card.popular {
    border-color: #f59e0b;
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: bold;
}

.pricing-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 5px;
}

.price-period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857, #059669);
}

.pricing-card.popular .pricing-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.pricing-card.popular .pricing-button:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-benefits {
    space-y: 15px;
}

.benefit {
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.form-cta {
    width: 100%;
    font-size: 18px;
    padding: 16px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.7;
}

/* Popup Message */
.popup-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #059669;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 15px;
    animation: slideIn 0.5s ease;
}

.popup-message button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .pricing-button {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partner-logo {
        height: 50px;
    }

    .logos h2 {
        font-size: 1.5rem;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .header-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .whatsapp-button {
        font-size: 12px;
        padding: 8px 16px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

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

    .popup-message {
        right: 10px;
        left: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .partner-logo {
        height: 40px;
    }

    .logo-item span {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .trust h2,
    .services h2,
    .testimonials h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .contact-text h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .scarcity-message {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .cta-button {
        font-size: 15px;
        padding: 14px 20px;
    }

    .hero-cta {
        font-size: 16px;
        padding: 16px 24px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
        padding: 16px;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 80vh;
}

.legal-content h1 {
    text-align: center;
    color: #1e40af;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.legal-section {
    background: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.legal-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    color: #1e40af;
    font-weight: 600;
}

/* Footer links styling for legal pages */
.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #3b82f6;
    text-decoration: underline;
}


/* Upsell Page Styles */
.upsell-page {
    background: #f8fafc;
}

.header-simple {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.upsell-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    text-align: center;
}

.success-message {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.success-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.next-steps {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.next-steps h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fbbf24;
    color: #1e40af;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.upsell-offer {
    padding: 80px 0;
}

.upsell-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.urgency-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 30px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.upsell-content h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.upsell-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.benefits-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.comparison-item {
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.comparison-item.lose {
    background: #fef2f2;
    border: 2px solid #fca5a5;
}

.comparison-item.win {
    background: #ecfdf5;
    border: 2px solid #86efac;
}

.comparison-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.formations-upsell {
    margin-bottom: 50px;
}

.formation-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
}

.formation-card.featured {
    border: 3px solid #fbbf24;
    transform: scale(1.05);
}

.formation-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1e40af;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.formation-card h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.formation-price {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
    margin-right: 10px;
}

.new-price {
    font-size: 2rem;
    font-weight: bold;
    color: #059669;
}

.savings {
    display: block;
    color: #dc2626;
    font-weight: bold;
    margin-top: 5px;
}

.formation-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.formation-features li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.formation-cta {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.formation-cta.primary {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.formation-cta.secondary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

.formation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.formations-individual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.guarantee {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 40px;
}

.guarantee h4 {
    color: #1e40af;
    margin-bottom: 10px;
}

.social-proof-upsell {
    margin-bottom: 40px;
}

.social-proof-upsell h4 {
    color: #1e40af;
    margin-bottom: 20px;
}

.testimonials-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial-mini {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.testimonial-mini p {
    font-style: italic;
    margin-bottom: 10px;
}

.alternative-cta {
    background: #1f2937;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.alternative-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.alternative-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-simple {
    background: #374151;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-simple p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-comparison {
        grid-template-columns: 1fr;
    }
    
    .formations-individual {
        grid-template-columns: 1fr;
    }
    
    .testimonials-mini {
        grid-template-columns: 1fr;
    }
    
    .formation-card.featured {
        transform: none;
    }
    
    .success-message h1 {
        font-size: 2rem;
    }
    
    .upsell-content h2 {
        font-size: 2rem;
    }
}
