@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&display=swap');

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #111 0%, #232323 100%);
    color: #f5f6fa;
    font-family: 'Montserrat', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(24, 24, 24, 0.97);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(80, 0, 0, 0.18);
    padding: 48px 32px 40px 32px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    border: 2px solid #ff3b3f;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 2px 16px #ff3b3f88);
    border-radius: 20px;
    background: #e0e0e0;
    padding: 18px;
    border: 2px solid #ff3b3f;
    transition: width 0.3s, filter 0.3s;
}

.contact-info h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    color: #ff3b3f;
    text-shadow: 0 2px 12px #ff3b3f44;
}

.contact-info p {
    font-size: 1.15rem;
    margin: 16px 0;
    letter-spacing: 0.5px;
}


.contact-info a {
    color: #ff3b3f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    border-bottom: 1px solid #ff3b3f44;
    padding-bottom: 2px;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
    text-shadow: 0 2px 8px #ff3b3f;
    border-bottom: 1px solid #fff;
}

@media (max-width: 500px) {
    .container {
        padding: 24px 8px 24px 8px;
    }

    .logo {
        width: 120px;
    }

    .contact-info h1 {
        font-size: 1.4rem;
    }
}