.title {
    color: black;
    margin-top: 0px;
}

main {
    padding: 40px 10%;
}

.red-line {
    width: 58px;
    height: 5px;
    background-color: #BB1A21;
    margin: -10px 0 25px 0;
}

.paragraph {
    color: #222222;
    text-align: justify;
}

.space {
    height: 37px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.container>.item {
    flex: 0 1 45%;
    margin: 10px;
}

.item {
    display: flex;
    border: 1px solid #D9D9D9;
    transition: all 0.3s ease;
    cursor: pointer;

    >div {
        height: 100%;
        flex: 1;
        display: flex;
    }

    .image {
        width: 100px;
        height: 100px;
        background-color: #BB1A21;
    }

    .text-section {
        margin-left: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;

        .subtitle {
            max-width: 200px;
            color: #D80027;
            font-weight: bold;
        }

        .description {
            color: #000000;
            font-size: small;
        }
    }


    .arrow {
        max-width: 50px;
        display: flex;
        justify-content: center;

        img {
            width: 20px;
        }
    }
}

.item:hover {
    scale: 1.05;
}

.table-container {
    width: 100%;
    margin-bottom: 75px;
}

.table-header {
    display: flex;
    border-top: 1px solid #ebebeb;
    font-weight: normal;
    color: #6c757d;
    border-bottom: 1px solid #ebebeb;
    padding: 10px 0px;

}

.table-row {
    display: flex;
    border-bottom: 1px solid #ebebeb;
    padding: 15px 0;
}

.table-row:hover {
    background-color: #f5f5f5;
}

.header-cell {
    background-color: #f1f1f1;
}

.header-cell,
.table-cell {
    padding: 15px 15px;
    text-align: left;
    box-sizing: border-box;;
    display: flex;
    align-items: center;
}

.role-column {
    flex: 0 0 35%;
}

.name-column {
    flex: 0 0 35%;
}

.country-column {
    flex: 0 0 30%;
}

.role-cell {
    color: #000000;
    font-weight: bold;
}

.country-content {
    display: flex;
    align-items: center;
}

.flag {
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 10px;
    border-radius: 50%;
}