/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #faf8f2;
    padding: 40px;
}
*/

.benefits-sectioncb {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.images-gridcb {
    width: 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
	
}

.images-gridcb img {
    width: 100%;
    /* border-radius: 18px; */
    object-fit: cover;
	border-radius: 50px 5px 50px 5px;
	
}

.images-gridcb img:hover {
    
	transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.contentcb {
    width: 50%;
}




.subtitlecb {
    color: #b59c5b;
    font-weight: 600;
    letter-spacing: 1px;
}

.titlecb {
    font-size: 42px;
    margin: 10px 0 30px;
    color: #614d28;
}

.cardcb {
    display: flex;
    gap: 15px;
    background: #f6f2e7;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
}

.cardcb:hover {
background:#faf8f2;
}

.cardcb .iconcb {
    font-size: 30px;
}

.cardcb h3 {
    color: #614d28;
    margin-bottom: 8px;
}

.cardcb p {
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-sectioncb {
        flex-direction: column;
    }
    .images-gridcb, .contentcb {
        width: 100%;
    }
}
