#offer-package-section {
    margin-top: 70px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(111, 111, 111, 0.356);
    border-radius: 6px;
    width: 400px;
    margin-bottom: 40px;
}
#offer-package-section > h2 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 10px 15px;
    color: white;
    text-align: center;
    background: linear-gradient(
        to left,
        var(--card3-gradient-color1),
        var(--card3-gradient-color2)
    );
}
#offer-package-section .offer-package {
    width: 100%;
    padding: 10px;
    text-decoration: none;
    color: black;
    display: flex;
    gap: 20px;
    margin-top: 5px;
    transition: 0.4s;
}
#offer-package-section .offer-package:hover {
    box-shadow: 0 0 20px rgba(111, 111, 111, 0.256);
    z-index: 111111111;
    scale: 1.06;
    transform: translate(-20px, -10px);
    border-radius: 10px;
}
#offer-package-section .offer-package img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 100px;
    width: 100px;
    border-radius: 10px;
}
#offer-package-section .offer-package h4 {
    font-size: 18px;
    font-weight: 600;
}
#offer-package-section .offer-package p {
    color: blue;
}

/* Responsive Styles */
@media only screen and (max-width: 920px) {
    #offer-package-section {
        width: 380px;
    }
}

@media only screen and (max-width: 820px) {
    #offer-package-section {
        width: 360px;
    }
}

@media only screen and (max-width: 720px) {
    #offer-package-section {
        width: 340px;
    }
    #offer-package-section > h2 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 620px) {
    #offer-package-section {
        width: 320px;
    }
    #offer-package-section > h2 {
        font-size: 19px;
    }
    #offer-package-section .offer-package h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 520px) {
    #offer-package-section .offer-package img {
        height: 90px;
        width: 90px;
    }
    #offer-package-section .offer-package h4 {
        font-size: 17px;
    }
    #offer-package-section .offer-package p {
        font-size: 15px;
    }
    #offer-package-section > h2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 420px) {
    #offer-package-section .offer-package img {
        height: 80px;
        width: 80px;
    }
    #offer-package-section .offer-package h4 {
        font-size: 15px;
    }
    #offer-package-section .offer-package p {
        font-size: 13px;
    }
    #offer-package-section > h2 {
        font-size: 17px;
    }
}

@media only screen and (max-width: 320px) {
    #offer-package-section {
        width: 100%;
    }
    #offer-package-section .offer-package img {
        height: 70px;
        width: 70px;
    }
    #offer-package-section .offer-package h4 {
        font-size: 14px;
    }
    #offer-package-section .offer-package p {
        font-size: 12px;
    }
    #offer-package-section > h2 {
        font-size: 16px;
    }
}

