a {
    text-decoration: none;
    color: #000000;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Text Styling */
.text-xl {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-lg {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Grid Styles */
.grid-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.help-center-hero-banner {
    background: #000000;
    color: #fff;
    padding: 80px;
    height: var(--banner-height);
}

.hero-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.help-center-hero-banner img {
    max-width: 100%;
    height: auto;
}

.help-center-icons-row {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 70px;
}

/* .help-center-icons-row .links {
    background: #eee;
} */

.help-center-icons-row .links img {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
}

.help-center-icons-row ul {
    /* display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0; */

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    column-gap: 100px;
    justify-content: center;
    align-items: center;
}

.help-center-icons-row a {
    /* max-width: 150px; */
    text-decoration: none;
    /* display: flex;
    align-items: center; */
    text-align: center;
    color: #000000;
}

.help-center-icons-row a > div {
    margin-bottom: 20px;
}

.help-center-icons-row > div:first-child {
    text-align: center;
    font-size: 60px;
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .help-center-icons-row {
        padding: 50px;
    }

    .help-center-hero-banner {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .help-center-hero-banner {
        height: 400px;
    }

    .help-center-hero-banner img {
        width: 80%;
    }

    .help-center-icons-row {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .grid-col-2 {
        grid-template-columns: 1fr;
    }

    .help-center-hero-banner {
        height: auto;
        padding: 20px 30px;
    }

    .help-center-icons-row {
        padding: 50px;
    }
}

@media (max-width: 576px) {
    .help-center-hero-banner {
        padding: 15px;
    }

    .help-center-hero-banner img {
        max-height: 250px;
    }

    .help-center-icons-row {
        padding: 20px 10px;
    }

    .help-center-icons-row ul {
        justify-content: center;
    }
}