.section-presentation {
    padding: 40px 20px;
    background-color: #003366;
    text-align: center;
}

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

.presentation-image {
    width: 20%;
    height: auto;
    margin-right: 20px;
    border-radius: 30%;
}

.presentation-text {
    width: 55%;
    text-align: left;
    font-size: 1.1rem;
    color: #fffdfd;
}

.presentation-text h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }

    .presentation-image {
        width: 40%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .presentation-text {
        width: 80%;
        font-size: 1rem;
    }

    .presentation-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .presentation-image {
        width: 50%;
        margin-bottom: 15px;
    }

    .presentation-text {
        width: 90%;
        font-size: 0.95rem;
    }

    .presentation-text h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .presentation-container {
        justify-content: space-between;
    }

    .presentation-image {
        width: 20%;
        margin-right: 20px;
    }

    .presentation-text {
        width: 55%;
    }

    .presentation-text h3 {
        font-size: 1.8rem;
    }
}