/* --- Карточка --- */
.other-card {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #f9fff9;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(50,205,50,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(50,205,50,0.25);
}

/* --- Ссылки контактов --- */
.contact-link {
    background: linear-gradient(135deg, #32cd32, #1d991d);
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(50,205,50,0.5);
    text-decoration: none;
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* --- Заголовки и текст --- */
.other-card h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1d991d;
    margin-bottom: 15px;
}

.other-card p {
    font-size: 1.1rem;
    color: #333;
}
