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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #c53030;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #333;
    color: white;
}

.cookie-consent.hidden {
    display: none;
}

/* Header Styles */
.header {
    background: rgba(160, 160, 160, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand .home-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #c53030;
}

/* Hero Section */
.hero {
    background: white;
    padding: 60px 0;
}

.brand-logo {
    text-align: center;
    margin-bottom: 50px;
}

.brand-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
}

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

.hero-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.hero-text .highlight {
    color: #c53030;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.laptop-image {
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 8px;
    position: relative;
}

.laptop-image::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 20%;
    background: #000;
    border-radius: 4px;
}

/* Section Blocks */
.section-block {
    background: white;
    margin: 30px 0;
    padding: 40px 0;
}

.section-number {
    background: #c53030;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.section-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.investment-steps, .investment-types {
    margin-top: 30px;
}

.step, .type {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.step h4, .type h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #c53030;
}

.step p, .type p {
    font-size: 15px;
    color: #666;
}

/* Premier Investissement */
.premier-investissement {
    background: white;
    padding: 40px 0;
    margin: 30px 0;
}

.premier-investissement h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.premier-investissement p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

.quote-block {
    border-left: 4px solid #c53030;
    padding: 20px;
    background: #f9f9f9;
    margin: 20px 0;
}

.quote-block p {
    font-style: italic;
    color: #555;
    margin: 0;
}

/* Erreurs Section */
.erreurs-section {
    background: white;
    padding: 40px 0;
    margin: 30px 0;
}

.erreurs-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c53030;
}

.erreurs-header p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

.erreurs-list {
    list-style: none;
    margin-top: 20px;
}

.erreurs-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.erreurs-list li::before {
    content: '•';
    color: #c53030;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 50px 0;
    margin: 30px 0;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.cta-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #000;
    color: white;
}

.form-group input::placeholder {
    color: #999;
}

.btn-submit {
    background-color: #c53030;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #a02727;
}

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

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Thank You Page Styles */
.thank-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
}

.thank-header {
    background: rgba(160, 160, 160, 0.9);
    padding: 15px 0;
}

.thank-header .application-status {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-left: 40px;
}

.thank-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.thank-brand {
    margin-bottom: 60px;
}

.thank-brand h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: 3px;
}

.thank-message h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.btn-return {
    display: inline-block;
    background-color: #c53030;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-return:hover {
    background-color: #a02727;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(160, 160, 160, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-content h3 {
        font-size: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .thank-message h2 {
        font-size: 36px;
    }
    
    .thank-header .application-status {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .section-block {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .thank-message h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 0 10px;
    }
}