.container-section {
    max-width:1400px;
    margin: 60px auto;

}
.section {
    display: flex;
    flex-direction: row;
    /* gap: 30px; */
    align-items: center;
    /* margin: 60px 0; */
}

.image-container {
    flex: 1;
    max-width: 50%;
}

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

.content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0d5c46;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #084435;
}

.arrow-icon {
    width: 36px;
    height: 36px;
    background-color: #0d5c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column-reverse;
    }
    .content{
        margin-left: 0px;
        padding-left: 0px;
    }
    .image-container, .content {
        max-width: 100%;
    }
    
    h2 {
        font-size: 28px;
    }
}