* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #1e1e2a;
    position: relative;
}

/* Полупрозрачный слой с размытием поверх фона */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(236, 230, 230, 0.5); /* #ece6e6 с прозрачностью */
    backdrop-filter: blur(8px);
    z-index: 1;
}

.card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 3rem 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #166874;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #3a4a5a;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    background: rgba(236, 230, 230, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(22, 104, 116, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    font-size: 1.8rem;
    width: 2rem;
    text-align: center;
}

.contact-item a, .contact-item span {
    color: #1e1e2a;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #166874;
    text-decoration: underline;
}

.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #6b7b8b;
    border-top: 1px solid rgba(22, 104, 116, 0.2);
    padding-top: 1.5rem;
}

/* Адаптивность */
@media (max-width: 600px) {
    .card {
        padding: 2rem 1.5rem;
    }
    h1 {
        font-size: 2.2rem;
    }
    .contact-item {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
}
