/* 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;
    min-height: 100vh;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-bottom: 2rem;
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    letter-spacing: 2px;
    margin: 0;
}

/* Content */
.content {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-card {
    text-align: center;
    width: 100%;
}

.title {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.message {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Contact section */
.contact {
    border-top: 1px solid #e8ecf0;
    padding-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .message-card {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        margin-bottom: 2rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .message-card {
        padding: 1.5rem;
    }
    
    .contact-link {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}