.image-text-block-section {
    padding: 60px 0; 
}

.image-text-block-row {
    display: flex;
    flex-wrap: wrap;
}

.image-text-block-img-col .image-wrapper {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.image-text-block-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.image-text-block-content {
    border-radius: 12px; 
    padding: 50px 45px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.image-text-block-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 25px;
}

.image-text-block-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.image-text-block-list li {
    font-size: 1rem;
    line-height: 2.2;
    display: flex;
    align-items: center;
}

.image-text-block-list .check-icon {
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
    color: #ffffff;
}

.image-text-block-btn {
    background-color: #2b4532;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.image-text-block-btn:hover {
    background-color: #1e3a28;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .image-text-block-content {
        padding: 40px 30px;
    }
    .image-text-block-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .image-text-block-section {
        padding: 40px 0; 
    }
    
    .image-text-block-img-col .image-wrapper {
        min-height: 280px;
        height: 280px;
    }
    
    .image-text-block-content {
        padding: 35px 25px;
    }
    
    .image-text-block-title {
        font-size: 1.45rem;
        margin-bottom: 20px;
    }
    
    .image-text-block-btn {
        width: 100%;
        text-align: center;
    }
}