body {
    font-family: system-ui, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    width: 90%;
    text-align: center;
}

img.photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.info {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.info p {
    margin: 0.5rem 0;
}

.info a {
    color: #2e7d32;
    text-decoration: none;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-buttons a {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.viber {
    background-color: #665cac;
}

.viber:hover {
    background-color: #574b90;
}

.telegram {
    background-color: #0088cc;
}

.telegram:hover {
    background-color: #0077b3;
}

form {
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

button {
    width: 100%;
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #1b5e20;
}

.official-site {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.official-site a {
    color: #333;
    text-decoration: underline;
}

.footer-coop {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: #555;
}

input.error, textarea.error,
input.is-invalid, textarea.is-invalid {
    border: 1px solid #F73E6B !important;
}

input.is-valid, textarea.is-valid {
    border: 1px solid #ccc !important;
}

label.error-text {
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}