:root {
    --content-width: 855px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Lato, sans-serif;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 400;
    color: rgb(51, 51, 51);
}

h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 8px;
}

img {
    width: 100%;
    display: block;
}

.main-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.content {
    background-color: white;
    max-width: var(--content-width);
    width: 100%;
    padding: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta {
    display: block;
    color: white;
    background-color: rgb(0, 175, 32);
    border-bottom: 3px solid rgb(0, 121, 22);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
}

.logo-container {
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
}

.stars-container {
    display: flex;
}

.stars-container svg {
    display: block;
    width: 20px;
    height: 20px;
}

.authro-block {
    color: #666;
    font-size: 16px;
}

.text-under-img {
    font-size: 10px;
}

.highlighted-p {
    background-color: #fff6e2;
    padding: 10px;
    font-weight: 700;
}

.cta--inline {
    color: #fb627a;
    font-weight: 700;
}

.cta--btn {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    text-align: center;
    background-image: linear-gradient(180deg, #4ba614, #008c00);
    font-weight: 700;
    border: 1px solid #34740e;
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    transition: all .3s ease;
}

.cta--btn:hover {
    background-color: #36780f;
    background-image: linear-gradient(180deg, #36780f, #005900);
    border-color: #224b09;
}

.attention-p {
    padding: 5px 10px;
    border: 3px dashed #fe7d7f;
    background-color: #fdbdbd;
    font-size: 18px;
}

.cards {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    background-color: #fff6e2;
    padding: 10px;
}

.card .stars-container {
    justify-content: center;
}

.card-name {
    font-weight: 700;
}

.footer-p {
    font-size: 10px;
    text-align: center;
}

.footer-a {
    color: #167ac6;
    font-weight: 700;
}

.footer-link-block {
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column; 
    }

    .content {
        max-width: 100%;
    }

    .cards {
        flex-direction: column;
    }

}