
#heading1 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 32.68px;
    padding-left: 140px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 40px;
       
}

.rewards-container{
    padding-left:  140px; ;

}

#heading2{

font-family: Open Sans;
font-size: 32px;
font-weight: 700;
line-height: 43.58px;
padding-left: 160px;
text-underline-position: from-font;
text-decoration-skip-ink: none;
padding-bottom: 50px;


}


.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
    gap: 20px;
}

.card {
    width: 325px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.card p1 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 15px;
    color: #333;
    line-height: 1.5;
}


.card p1 {
    color: #777;
    font-size: 14px;
    margin: 15px;
    line-height: 1.5;
}

.card-container .click {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    margin: 10px 15px 20px 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.card-container .click:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .card {
        width: 90%;
    }

    .card-container {
        margin-top: 50px;
    }
}