.contacts-page {
    min-height: 100vh;
    padding: 120px 0;
    background: #0A0A0A;
}

.contacts-content {
    padding: 0 40px;
}

.contacts-info h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #fff, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-group {
    margin-bottom: 40px;
}

.contact-group h2 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-group a {
    display: block;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-group a:hover {
    color: #8A2BE2;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8A2BE2;
    border-color: #8A2BE2;
}

@media (max-width: 768px) {
    .contacts-page {
        padding: 100px 0;
    }

    .contacts-content {
        padding: 0 20px;
    }

    .contacts-info h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .contact-group a {
        font-size: 20px;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-link {
        font-size: 16px;
        padding: 10px 20px;
    }
} 