  .section-container {
    padding: 60px 20px;
    background-color: #fff; /* Keep it clean */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.content-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1000px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content-box img {
    width: 45%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-text {
    padding: 20px 30px;
    flex: 1;
}

.content-text h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.content-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.content-text .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
     margin-left: 0;
}

.content-text .button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
    }
    .content-box img {
        width: 100%;
        height: auto;
    }
}
