body {
    background: #f9f9f9;
    color: #222;
    margin: 0;
    padding-top: 80px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.coop-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.coop-header {
    text-align: center;
    font-size: 2.4em;
    color: #111;
    margin-bottom: 50px;
}

/* Вступление */
.coop-intro {
    text-align: center;
    font-size: 1.15em;
    color: #444;
    margin-bottom: 70px;
    line-height: 1.6;
}

.coop-directions {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Карточки направлений */
.coop-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 25px;
    max-width: 300px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.coop-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.coop-card h3 {
    margin-top: 0;
    color: #222;
}

.coop-card p {
    color: #555;
    font-size: 0.95em;
}

/* Форма */
.coop-form-section {
    text-align: center;
    margin-top: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.coop-form-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.coop-form-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #111;
}

.coop-form-section p {
    color: #555;
    margin-bottom: 30px;
}

.coop-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.coop-form input,
.coop-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    resize: none;
    transition: border 0.3s;
}

.coop-form input:focus,
.coop-form textarea:focus {
    border-color: #0073e6;
    outline: none;
}

.coop-form button {
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}

.coop-form button:hover {
    background: #005bb5;
}

.coop-success {
    color: #2e7d32;
    font-weight: 600;
}

.coop-error {
    color: #c62828;
    font-weight: 600;
}

/* Мобильная адаптация */
@media (max-width: 720px) {
    .coop-directions {
        flex-direction: column;
        align-items: center;
    }

    .coop-card {
        max-width: 90%;
    }
}
