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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #2c3e50;
}

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

.logo-container {
    margin-bottom: 50px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
}

.content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a202c;
}

.message {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.contact-label {
    font-size: 16px;
    color: #718096;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f7fafc;
    border: 2px solid transparent;
}

.contact-item:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: #4a5568;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    stroke: #2c3e50;
}

@media (max-width: 640px) {
    .container {
        padding: 40px 30px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .content h1 {
        font-size: 26px;
    }
    
    .message {
        font-size: 16px;
    }
    
    .contact-item {
        font-size: 16px;
        padding: 10px 20px;
    }
}

