        .contact {
            background: #fff;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 32px;
        }

        .contact-item label {
            display: block;
            font-size: 12px;
            color: #8b95a5;
            margin-bottom: 6px;
        }

        .contact-item p,
        .contact-item a {
            font-size: 15px;
            color: #1f2329;
            text-decoration: none;
            line-height: 1.6;
        }

        .contact-item a:hover {
            color: #3b82f6;
        }

        /* Cooperation Form */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
