.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px; /* Space between text and image */
    padding: 50px;
    background-color: #ffffff; /* Match background color */
    max-width: 1200px;
    margin: 0 auto; /* Center the entire section */
}

.content-section .text-content {
    flex: 1;
    max-width: 600px; /* Restrict width for readability */
    text-align: left; /* Align text to the left */
}

.content-section .text-content h2 {
    font-size: 2.5rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left; /* Ensure header is aligned left */
}

.content-section .text-content h2 span {
    color: #007bff; /* Blue color for highlighted text */
}

.content-section .text-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify; /* For neat text alignment */
}

.content-section .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the image */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

@media screen and (max-width: 768px) {
    .content-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .content-section .text-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .content-section .text-content p {
        font-size: 0.95rem;
        text-align: justify;
    }

    .content-section .image-content img {
        max-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .content-section {
        padding: 20px;
    }

    .content-section .text-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .content-section .text-content p {
        font-size: 0.9rem;
        text-align: justify;
    }

    .content-section .image-content img {
        max-height: 250px;
    }
}
