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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.5s ease-in-out;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.logo-image {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out;
}

.message {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out 0.3s backwards;
}

.contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    animation: slideUp 1s ease-out 0.6s backwards;
}

.contact p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #3498db;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .message {
        font-size: 1rem;
    }
} 