#package-tags-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;
}
#package-tags-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)
    );
}
#package-tags-section div {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
#package-tags-section .package-tag-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #5448ab;
    color: #5448ab;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.4s;
}
#package-tags-section .package-tag-btn:hover {
    background: #5448ab;
    color: white;
    border: 2px solid #5448ab;
}

/* Responsive Styles */
@media only screen and (max-width: 920px) {
    #package-tags-section {
        width: 380px;
    }
}

@media only screen and (max-width: 820px) {
    #package-tags-section {
        width: 360px;
    }
}

@media only screen and (max-width: 720px) {
    #package-tags-section {
        width: 340px;
    }
    #package-tags-section h2 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 620px) {
    #package-tags-section {
        width: 320px;
    }
    #package-tags-section h2 {
        font-size: 19px;
    }
}

@media only screen and (max-width: 520px) {
    #package-tags-section h2 {
        font-size: 18px;
    }
    #package-tags-section .package-tag-btn {
        padding: 8px 20px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 420px) {
    #package-tags-section .package-tag-btn {
        padding: 6px 16px;
        font-size: 14px;
    }
    #package-tags-section h2 {
        font-size: 17px;
    }
}

@media only screen and (max-width: 320px) {
    #package-tags-section {
        width: 100%;
    }
    #package-tags-section .package-tag-btn {
        padding: 5px 14px;
        font-size: 13px;
    }
    #package-tags-section h2 {
        font-size: 16px;
    }
    #package-tags-section div {
        gap: 15px;
    }
}

