body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(45deg, #d84350, #e57373); /* темнее и мягче */
    margin: 0;
    color: #111; /* улучшенный контраст */
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9); /* почти белый, не прозрачный */
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 36px;
    margin: 10px 0;
    color: #222;
}

h2 {
    font-size: 24px;
    margin: 10px 0;
    color: #333;
}

p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 700px;
    color: #222;
}

.verification-img {
    width: 150px;
    height: 150px;
    margin: 20px 0;
    cursor: pointer;
}

.verification-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.8rem;
    border: none;
    background-color: #c0392b; /* тёмно-красный */
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.verification-btn:hover {
    background-color: #a93226; /* ещё темнее при наведении */
}

.why-choose-us {
    padding: 60px 20px;
    background-color: #f5f5f5; /* светлый серый фон */
    border-radius: 10px;
    max-width: 800px;
    margin: 60px auto 0 auto;
    color: #111;
}

.why-choose-us h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #111;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #222;
}

.faq {
    margin-top: 100px;
    padding: 60px 20px;
    background-color: #eeeeee;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #111;
}

.faq h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #111;
}

.faq-question {
    text-align: left;
    margin-bottom: 20px;
}

.faq-question strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.org-scheme {
    margin-top: 40px;
    background-color: #cccccc;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: #111;
    font-size: 16px;
}

.org-scheme h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
}

.org-scheme ul {
    list-style: none;
    padding: 0;
}

.org-scheme li {
    margin-bottom: 8px;
    color: #222;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .verification-img {
        width: 100px;
        height: 100px;
    }

    .verification-btn {
        padding: 12px 24px;
        font-size: 1.2rem;
    }

    .faq {
        padding: 40px 15px;
    }

    .faq h3 {
        font-size: 22px;
    }

    .faq-question strong {
        font-size: 16px;
    }

    .why-choose-us {
        padding: 40px 15px !important;
    }

    .why-choose-us h3 {
        font-size: 22px !important;
    }

    .why-choose-us ul {
        font-size: 16px !important;
    }

    .org-scheme {
        font-size: 14px;
    }

    .org-scheme h4 {
        font-size: 18px;
    }
}
