 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 20px;
        }
        
        .email-container {
            max-width: 600px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .header {
            background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(91,193,53,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(65,130,204,0.1);stop-opacity:1" /></linearGradient></defs><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="url(%23grad)"/></svg>') center/cover;
            opacity: 0.3;
        }
        
        .logo-container {
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }
        
        .logo {
            width: 80px;
            height: 80px;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        .brand-name {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            margin-top: 10px;
            letter-spacing: -0.5px;
        }
        
        .tagline {
            color: #5bc135;
            font-size: 14px;
            font-weight: 500;
            margin-top: 5px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .hero-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        
        .content {
            padding: 40px 30px;
        }
        
        .greeting {
            font-size: 18px;
            color: #16213e;
            margin-bottom: 20px;
        }
        
        .headline {
            font-size: 28px;
            font-weight: 700;
            color: #0f3460;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .highlight {
            color: #5bc135;
        }
        
        .subtext {
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
        }
    
        
        .solutions {
            margin-bottom: 30px;
        }
        
        .solutions h3 {
            font-size: 20px;
            color: #0f3460;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .solution-card {
            background: #ffffff;
            border: 2px solid #e9ecef;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .solution-card:hover {
            border-color: #5bc135;
            box-shadow: 0 5px 15px rgba(91, 193, 53, 0.2);
            transform: translateY(-3px);
        }
        
        .solution-card h4 {
            font-size: 16px;
            color: #16213e;
            margin-bottom: 8px;
        }
        
        .solution-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }
        
        
        .social-proof {
            padding: 30px;
            background: #f8f9fa;
            text-align: center;
        }
        
        .social-proof p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .badge {
            background: #ffffff;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 12px;
            color: #0f3460;
            font-weight: 600;
            border: 1px solid #dee2e6;
        }
        
        .footer {
            background: #16213e;
            padding: 30px;
            text-align: center;
            color: #ffffff;
        }
        
        .footer p {
            font-size: 13px;
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer a {
            color: #5bc135;
            text-decoration: none;
            margin: 0 10px;
            transition: opacity 0.3s ease;
        }
        
        .footer a:hover {
            opacity: 0.8;
        }
        
        @media (max-width: 600px) {
            .solution-grid {
                grid-template-columns: 1fr;
            }
            
            .headline {
                font-size: 24px;
            }
            
            .content {
                padding: 30px 20px;
            }
        }