        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            color: #475569;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            line-height: 1.6;
        }
        
        .container {
            max-width: 900px;
            width: 100%;
            text-align: center;
        }
        
        .logo {
            margin-bottom: 4rem;
        }
        
        .logo h1 {
            font-size: 3.8rem;
            font-weight: 300;
            color: #1e293b;
            letter-spacing: -1.5px;
            margin-bottom: 0.5rem;
        }
        
        .logo p {
            font-size: 1.3rem;
            color: #64748b;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .divider {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #c7d2fe, #a5b4fc);
            margin: 2rem auto;
        }
        
        .contact-section {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 4rem 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.9);
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #c7d2fe, #a5b4fc, #818cf8);
        }
        
        .contact-section h2 {
            font-size: 2.2rem;
            margin-bottom: 3rem;
            color: #1e293b;
            font-weight: 400;
            letter-spacing: -0.5px;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid rgba(226, 232, 240, 0.8);
            position: relative;
        }
        
        .contact-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: rgba(165, 180, 252, 0.4);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
            color: #4f46e5;
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.1);
        }
        
        .contact-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #374151;
            font-weight: 500;
        }
        
        .contact-details p {
            color: #64748b;
            font-size: 1.1rem;
            font-weight: 400;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            letter-spacing: 0.5px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #a5b4fc, #818cf8);
            color: white;
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.7);
            color: #4f46e5;
            border: 1px solid rgba(165, 180, 252, 0.5);
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }
        
        footer {
            margin-top: 4rem;
            text-align: center;
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 300;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            color: #94a3b8;
            font-size: 1.2rem;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            color: #4f46e5;
        }
        
        /* Custom icons using CSS */
        .icon-phone::before {
            content: "📞";
            font-size: 2rem;
        }
        
        .icon-email::before {
            content: "✉️";
            font-size: 2rem;
        }
        
        .icon-chat::before {
            content: "💬";
            font-size: 2rem;
        }
        
        .icon-call::before {
            content: "📱";
            margin-right: 0.5rem;
        }
        
        .icon-message::before {
            content: "📨";
            margin-right: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .logo h1 {
                font-size: 2.8rem;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-section {
                padding: 3rem 2rem;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .logo h1 {
                font-size: 2.2rem;
            }
            
            .logo p {
                font-size: 1rem;
            }
            
            .contact-section h2 {
                font-size: 1.8rem;
            }
        }
