﻿.header-container-help {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    display: flex;
    margin-top: 100px;
    justify-content: space-between;
    align-items: center;
}

.header-help {
    color: white;
    display: flex;
    flex-direction: column;
}

    .header-help h1 {
        font-size: 40px;
        font-weight: 600;
    }

    .header-help p {
        font-size: 20px;
        width: 500px;
        margin-top: 5px;
        width: 80%;
    }

.search-container-help {
    background-color: white;
    border-radius: 5px;
    padding: 10px;
    align-items: center;
    display: flex;
    gap: 10px;
    height: 45px;
}

    .search-container-help button {
        background: none;
        border: none;
        cursor: pointer;
    }

    .search-container-help input {
        background: none;
        border: none;
        height: 35px;
        width: 250px
    }

.searchResults-container-help {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 90px;
    justify-content: center;
    min-height: 45vh;
    flex-direction: column;
}

.searchResults-item-help {
    padding: 15px;
    flex: 1 1 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .searchResults-item-help ul {
        list-style-type: none;
        padding-left: 0;
    }

    .searchResults-item-help li {
        margin-top: 8px;
        display: flex;
    }

        .searchResults-item-help li a {
            text-decoration: none;
            font-size: 18px;
            font-weight: normal;
            background-color: #F4F4F4;
            padding: 10px;
            width: 100%;
            border-radius: 5px;
            color: black;
        }

            .searchResults-item-help li a strong {
                color: #E40E18;
            }

            .searchResults-item-help li a:hover {
                background-color: black;
                color: white;
            }

.groups-container-help {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 90px;
    justify-content: center;
    min-height: 30vh;
}

.group-item-help {
    padding: 15px;
    flex: 1 1 calc(50% - 40px); 
    box-sizing: border-box;
}

.group-header-item-help {
    display: flex;
    justify-content: space-between;
}

    .group-header-item-help span {
        font-size: 28px;
        font-weight: 600;
        color: black;
    }

    .group-header-item-help a {
        font-size: 18px;
        font-weight: normal;
        text-decoration: none;
        color: #E40E18;
    }

        .group-header-item-help a:hover {
            text-decoration: underline;
        }

.group-item-help ul {
    list-style-type: none;
    padding-left: 0;
}

.group-item-help li {
    margin-top: 8px;
    display: flex;
}

    .group-item-help li a {
        text-decoration: none;
        font-size: 18px;
        font-weight: normal;
        background-color: #F4F4F4;
        padding: 10px;
        width: 100%;
        border-radius: 5px;
        color: black;
    }

        .group-item-help li a:hover {
            background-color: black;
            color: white;
        }


/*HelpArticle*/

.article-container-help {
    margin-top: 100px;
    padding: 90px;
    min-height: 65vh;
    display: flex;
    flex-direction:column;
    gap: 20px;
}

    .article-container-help h1 {
        color: black;
        font-size: 40px;
    }

    .article-container-help h3 {
        color: black;
        font-size: 30px;
        font-weight: 500;
    }

    .article-container-help p {
        color: black;
        font-size: 20px;
        font-weight: normal;
        white-space: pre-line;
    }


    .article-container-help a {
        font-size: 18px;
        font-weight: normal;
        text-decoration: none;
        color: #E40E18;
    }

        .article-container-help a:hover {
            text-decoration: underline;
        }


@media (min-width: 712px) and (max-width: 910px) {
    .header-container-help {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 20px;
    }

    .header-help p {
        width: 100%;
    }

    .group-item-help {
        flex: 1 1 100%;
    }

    .groups-container-help {
        padding: 30px;
    }

    /*HelpGroupPage*/
}

@media (max-width: 712px) {
    .header-container-help {
        padding: 50px;
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 20px;
    }

    .header-help p {
        width: 100%;
    }

    .group-item-help {
        flex: 1 1 100%;
    }

    .groups-container-help {
        padding: 20px; 
    }

    /*HelpGroupPage*/
}
