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

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

.container {
    background: white;
    padding: 3rem 4rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
    width: 500px;
}

h1 {
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info p {
    margin: 0.5rem 0;
}

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

.contact-info a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 2rem;
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
}