.category-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 20px;
    width: 100%;

    .support-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        max-width: 90rem;
        height: fit-content;
        flex: 1 1 350px;
        
        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            
            .card-header-text {
                font-size: 24px;
                font-family: Poppins-Bold;
                font-weight: bold;
                color: var(--support-page-caption-text);
            }
    
            img {
                width: 60px;
                height: 60px;
            }
        }
    }

    .card-content {
        ul {
            list-style: none;
            padding: 0;
    
            li {
                display: flex;
                justify-content: space-between;
                width: 100%;
                position: relative;
                align-items: center;
                
                .card-content-link {
                    display: flex;
                    justify-content: space-between;
                    cursor: pointer;
                    width: 100%;
                    margin: 1rem 0;
                    text-decoration: none;
                    
                    .card-content-text {
                        color: var(--support-category-card-description);
                        font-family: Poppins-Bold;
                    }
    
                    .arrow {
                        right: 0;
                        color: var(--support-question-detail);
                        font-size: 20px;
                        font-weight: bolder;
                    }
                }
            }
        }
    }
    
    
    .more-link {
        display: flex;
        justify-content: space-between;
        position: relative;
        align-items: center;
        width: 20%;
        cursor: pointer;
        text-decoration: none;
        color: var(--support-category-card-more-text);
    
        .more-text {
            font-size: 16px;
            font-family: Poppins-Extra-Bold;
        }
    
        .more-arrow {
            right: 0;
            font-size: 20px;
            font-weight: bolder;
        }
    }
}

.more-link:hover,
.card-content-link:hover .card-content-text,
.card-content-link:hover .arrow {
    color: var(--support-question-button-arrow) !important;
}

@media screen and (max-width: 1080px) {
    .support-container {
        gap: 30px;
        max-width: 1000px;
    }
    .support-card {
        max-width: 300px;
    }
    .card-header-text {
        font-size: 22px;
    }
}

@media screen and (max-width: 720px) {
    .support-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 95%;
    }
    .support-card {
        min-width: 100%;
        max-width: 100%;
        padding: 15px;
    }
    .card-header-text {
        font-size: 20px;
    }
    .card-content-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 420px) {
    .support-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 100%;
    }
    .support-card {
        max-width: 100%;
        padding: 10px;
    }
    .card-header-text {
        font-size: 8vw !important;
    }
    .card-content-text {
        font-size: 6vw !important;
    }
    .more-link {
        width: 30%;
    }
    .card-header img {
        width: 20% !important;
        height: 20% !important;
    }
}
