/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    min-height: 100vh;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}

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

.description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.contact p {
    color: #888;
    margin-bottom: 10px;
    font-size: 1rem;
}

.email {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid #d4af37;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.email:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 120px;
    }
}
