:root {
    font-family: system-ui, Circe, Helvetica, Arial, sans-serif;
    line-height: 1.2;
    font-weight: 400;
    color-scheme: light;
    color: rgba(36, 36, 36, 0.87);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    background-color: #e4eef3;
}
body {
    margin: 0;
    display: flex;
    place-items: center;
    min-width: 320px;
    min-height: 100vh
}
main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 2rem;
}
ul, li, p {
    margin: 0;
    padding: 0;
}
li {
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}
li::before {
    content: "";
    flex: 0 0 auto;
    display: block;
    background: url('check.svg') no-repeat center;
    width: 24px;
    aspect-ratio: 1;
}
.card__head {
    display: inherit;
    flex-direction: column;
    gap: 0.5rem;
}
.card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
}
.card__text {
    height: 100%;
}
.card_button {
    flex: 0 0 auto;
}
.card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}
.card__logo img {
    min-height: 50px;
    height: 60px;
    max-height: 70px;
}
button {
    border: none;
    background-color: #227eb3;
    border-radius: 0.5rem;
    color: #fff;
    font-weight: 400;
    padding: 1rem;
}
.card.exprus {
    background-color: #000000f0;
    color: #fff;
}
a {
    text-decoration: none;
    font-weight: bold;
    color: #37739b;
}

a:hover {
    color: #1a6895;
}
button:hover {
    cursor: pointer;
    background-color: #1a6895;
}

@media (max-width: 760px){
    main {
        padding: 1rem;
        grid-template-columns: auto;
        gap: 1rem;
    }
    .card__footer{
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .card__footer button{
        width: 100%;
    }
}