* {
    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, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mail-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.mail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.mail-card:hover::before {
    opacity: 1;
}

.mail-card-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mail-card-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-content {
    flex: 1;
}

.card-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.card-btn {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: background 0.3s ease;
}

.mail-card:hover .card-btn {
    background: rgba(255, 255, 255, 0.3);
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    font-size: 14px;
    color: #64748b;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

@media (max-width: 640px) {
    .header {
        margin-bottom: 30px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .main {
        padding: 24px;
    }
    
    .mail-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
    }
    
    .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .card-content h2 {
        font-size: 18px;
    }
}
