.about-card{
    background:#fff;
    border-radius:15px;
}

.about-card img{
    border-radius:15px;
    transition:.4s;
}

.about-card img:hover{
    transform:scale(1.03);
}

.benefit-card{
    border:none;
    border-radius:15px;
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.benefit-card{

border:0;

border-radius:18px;

padding:15px;

background:#fff;

transition:.35s;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.benefit-card:hover{

transform:translateY(-8px);

box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.benefit-card h5{

font-weight:700;

color:#2f4f2f;

}

.benefit-card p{

color:#666;

font-size:15px;

}

.timeline-step{

background:#fff;

padding:25px;

border-radius:18px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

height:100%;

transition:.35s;

}

.timeline-step:hover{

transform:translateY(-8px);

}

.timeline-icon{

font-size:60px;

margin-bottom:15px;

}

.timeline-arrow{

font-size:45px;

font-weight:bold;

color:#f0ad00;

padding-top:70px;

}

.recommended-product{

border-radius:18px;

overflow:hidden;

}

.recommended-product img{

transition:.4s;

}

.recommended-product img:hover{

transform:scale(1.05);

}

.recommended-product h5{

font-weight:700;

}

.recommended-product .btn{

border-radius:30px;

font-weight:600;

}

.honey-benefits-section {
    padding: 70px 0;
    background: #f8faf7;
}

.honey-benefit-card {
    height: 100%;
    display: flex;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
    transition: .3s;
}

.honey-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.benefit-number {
    min-width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #198754;
    color: #fff;

    font-size: 20px;
    font-weight: 700;
}

.benefit-content h4 {
    margin-bottom: 10px;
    color: #234d32;
    font-weight: 700;
}

.benefit-content p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}



.remedy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.remedy-item {
    background: #fffaf0;
    border-radius: 15px;
    padding: 22px;
    border: 1px solid #f0e0b0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.remedy-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.remedy-item p {
    margin-bottom: 0;
    line-height: 1.7;
}

@media(max-width:768px) {
    .remedy-list {
        grid-template-columns: 1fr;
    }
}


