/* Базовые стили */


body {
    font-family: "Comic Sans MS", cursive, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #222;
}

h2 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #555;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.question {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

form {
    margin-top: 30px;
    padding-bottom: 40px;
}

label {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}

.form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

input[type="tel"] {
    padding: 12px;
    font-size: 16px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="tel"]:focus {
    outline: none;
    border-color: #888;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

button {
    padding: 12px 22px;
    font-size: 16px;
    background-color: #f0f0f0;
    border: 1px solid #bbb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background-color: #e5e5e5;
    transform: scale(1.03);
}

.reviews {
    margin: 40px auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.reviews a {
    display: inline-block;
    margin-top: 8px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.reviews a:hover {
    color: #004a99;
    text-decoration: underline;
}

footer {
    text-align: center;
    font-size: 9px;
    color: #777;
}

/* Адаптивность */
@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 18px;
    }

    .form-group {
        flex-direction: column;
    }

    input[type="tel"] {
        width: 100%;
    }

    button {
        width: 100%;
    }

    .container {
        margin: 40px 10px;
        padding: 20px 15px;
    }

    .reviews {
        font-size: 15px;
        margin: 30px 10px;
    }

    footer {
        font-size: 8px;
    }
}