.presentation-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.presentation-content {
    margin-bottom: 30px;
}

.presentation-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.presentation-content p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 30px;
}

.download-btn {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #000000;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.download-btn i {
    margin-left: 8px;
}

.download-btn:hover {
    background-color: #a80000;
    transform: translateY(-3px);
    text-decoration: none;
}

.presentation-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling effect */
html {
    scroll-behavior: smooth;
}

.banner_presentation {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f2f2f2;
}

.banner_presentation img {
    width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .banner_presentation img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .banner_presentation img {
        max-height: 300px;
    }
}

/* General styling for the image container */
.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Styling for the images */
.image-left,
.image-right {
    flex: 1;
    margin: 0 10px;
    max-width: 50%;
}

/* Ensuring both images are of the same size */
.image-left img,
.image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 300px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .image-container {
        flex-direction: row;
        padding: 0 10px;
    }

    .image-left,
    .image-right {
        margin: 0 5px;
    }

    .image-left img,
    .image-right img {
        max-height: 200px;
    }
}
