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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 500px;
    border-top: 4px solid #E30613;
}

.logo {
    width: 180px;
    margin-bottom: 40px;
    filter: drop-shadow(0 2px 8px rgba(227, 6, 19, 0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    color: #E30613;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact p {
    color: #495057;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #E30613;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .logo {
        width: 150px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .contact p {
        font-size: 15px;
    }
}
