* {
    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(to bottom right, #eff6ff, #ffffff, #fff7ed);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.container {
    max-width: 42rem;
    width: 100%;
}

.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.header-image {
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.content {
    padding: 3rem 2rem;
    text-align: center;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: #dbeafe;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.icon {
    color: #2563eb;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.description {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-box {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: inline-block;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.mail-icon {
    color: #2563eb;
}

.email-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.email-link:hover {
    color: #1d4ed8;
}

.footer {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .content {
        padding: 3rem;
    }
}

@media (max-width: 640px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
}
