.container1 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    /*background-color: #AC4803;*/
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-wrap: wrap;
}

.left-section {
    flex: 3;
    padding: 10px;
    color: black;
}

.left-section h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: black;
}

.left-section p {
    line-height: 1.6;
    text-align: justify;
    color: black;
    font-size: 20px;
}

.read-more-link {
    display: inline-block;
    margin-top: 15px;
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.read-more-link:hover {
    text-decoration: underline;
}

.right-section {
    flex: 1;
    text-align: center;
    padding: 20px;
    color: black;
}

.right-section img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.right-section h5 {
    margin: 15px 0 5px;
    font-size: 18px;
    color: black;
}

.right-section a {
    color: black;
    text-decoration: none;
}

.right-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
        .container {
            flex-direction: column;
    }

    .right-section {
        margin-top: 20px;
    }
}