body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.about-header,
.about-section {
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}


/* About Section Styles */
.about-header {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient1);
    color: #fff;
    border-radius: 1rem;
    margin-bottom: 3rem;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: fadeIn 2s ease-in-out;
}

.about-header h1 {
    font-size: 5rem;
    /* Augmenté de 4.5rem à 5rem */
    margin-bottom: 1.5rem;
    /* Augmenté pour plus d'espace */
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.about-header p {
    font-size: 2.2rem;
    /* Augmenté de 2rem à 2.2rem */
    line-height: 1.8;
    /* Augmenté pour plus d'espace */
    font-weight: 300;
}

.about-section {
    background-color: #f9f9f9;
    padding: 3rem 2.5rem;
    /* Augmenté légèrement pour plus d'espace */
    margin-bottom: 2.5rem;
    /* Augmenté pour plus d'espace */
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section:nth-child(even) {
    background-color: #ffffff;
}

.about-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.about-content h2 {
    font-size: 3.7rem;
    /* Augmenté de 3.3rem à 3.7rem */
    color: var(--purple);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    /* Augmenté pour plus d'espace */
    text-transform: uppercase;
}

.about-content h2 i {
    margin-right: 1.5rem;
    /* Augmenté pour plus d'espace */
    transition: color 0.3s ease, transform 0.3s ease;
}

.about-content h2:hover i {
    color: var(--lightBlue);
    transform: rotate(10deg);
}

.about-content h3 {
    font-size: 3rem;
    /* Augmenté de 2.7rem à 3rem */
    margin-bottom: 2.5rem;
    /* Augmenté pour plus d'espace */
    font-weight: 600;
}

.about-details p {
    font-size: 2rem;
    /* Augmenté de 1.8rem à 2rem */
    color: #666;
    margin-bottom: 1.5rem;
    /* Augmenté pour plus d'espace */
    font-weight: 300;
}

.about-details ul {
    padding-left: 2.5rem;
    /* Augmenté pour plus d'espace */
    margin-bottom: 1.5rem;
    /* Augmenté pour plus d'espace */
}

.about-details ul li {
    font-size: 2rem;
    /* Augmenté de 1.8rem à 2rem */
    color: #666;
    margin-bottom: 1rem;
    /* Augmenté pour plus d'espace */
    font-weight: 300;
}

.about-contact {
    text-align: center;
    margin-top: 4.5rem;
    /* Augmenté pour plus d'espace */
}

.about-contact h2 {
    font-size: 4rem;
    /* Augmenté de 3.7rem à 4rem */
    margin-bottom: 2.5rem;
    /* Augmenté pour plus d'espace */
    font-weight: 600;
}

.about-contact .btn {
    display: inline-block;
    padding: 1.5rem 5rem;
    /* Augmenté pour plus d'espace */
    border-radius: 5rem;
    background: var(--gradient);
    color: #fff;
    font-size: 2.2rem;
    /* Augmenté de 2rem à 2.2rem */
    transition: transform 0.3s ease;
}

.about-contact .btn:hover {
    transform: scale(1.1);
    background: var(--gradient1);
}

.about-contact .btn a {
    color: #fff;
    text-decoration: none;
}

.about-contact .btn a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 4rem;
        /* Augmenté de 3.3rem à 4rem */
    }

    .about-header p {
        font-size: 2rem;
        /* Augmenté de 1.8rem à 2rem */
    }

    .about-content h2 {
        font-size: 2.4rem;
        /* Augmenté de 3rem à 3.2rem */
    }

    .about-content h3 {
        font-size: 2.7rem;
        /* Augmenté de 2.5rem à 2.7rem */
    }

    .about-details p,
    .about-details ul li {
        font-size: 1.8rem;
        /* Augmenté de 1.6rem à 1.8rem */
    }

    .about-contact h2 {
        font-size: 3.7rem;
        /* Augmenté de 3.3rem à 3.7rem */
    }

    .about-contact .btn {
        font-size: 2rem;
        /* Augmenté de 1.8rem à 2rem */
        padding: 1.5rem 4rem;
        /* Ajusté légèrement pour plus d'espace */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* About Section Styles */
.special-section {
    background-color: var(--gradient1);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.simulator-form {
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    margin-bottom: 2rem;
}

.simulator-form:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.simulator-form .form-group {
    margin-bottom: 2rem;
}

.simulator-form label {
    font-size: 1.8rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.simulator-form .form-control {
    font-size: 1.8rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 2px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.simulator-form .form-control:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0.5rem rgba(121, 33, 180, 0.3);
}

.simulator-form .form-control::placeholder {
    color: #bbb;
}

.btn-simulator {
    font-size: 1.8rem;
    padding: 1rem 3rem;
    background-color: var(--purple);
    color: #fff;
    border: none;
    border-radius: 5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-simulator:hover {
    background-color: var(--lightBlue);
    transform: scale(1.05);
}

.simulator-result {
    margin-top: 2rem;
    background: #fff;
    color: var(--purple);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;
}

.simulator-result:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.simulator-result p {
    margin: 0;
    font-weight: 600;
}

.error-message {
    color: #ff4d4d;
    font-size: 1.8rem;
    background-color: #ffe5e5;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.success-message {
    color: #28a745;
    font-size: 1.8rem;
    background-color: #e9f7ec;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}