.section-padding {
    padding-top: 60px;
    padding-bottom: 40px;
}

.card-product {
    padding: 20px 0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-product h3 {
    color: #da7f00;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
}

.card-product h2 {
    color: #000000;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-product .btn-primary {
    background-color: #767f81;
    border-color: #767f81;
    color: #ffffff;
    border-radius: 40px;
    height: 30px;
    width: 130px;
    padding: 0px 5px;
    font-size: 14px;
    font-weight: 300;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.card-product .btn-primary:hover {
    background-color: #505657;
    border-color: #767f81;
}

.card-product img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    justify-content: end;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 40px 0;
    }

    .card-product {
        margin-bottom: 30px;
        padding: 20px;
    }

    .card-product img {
        margin-top: 0px;
    }
}

@media (max-width: 1200px) {
    .card-product h2 {
        font-size: 20px;
    }
}
