
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .contact-header h1 {
            font-size: 36px;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .contact-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #00b8d4, #7c4dff);
        }
        
        .contact-header p {
            font-size: 18px;
            font-weight: 400;
            color: #666;
            max-width: 600px;
            margin: 20px auto 0;
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-info h2 {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .info-icon {
            background: linear-gradient(135deg, #00b8d4, #7c4dff);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .info-details h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #222;
        }
        
        .info-details p {
            color: #666;
            font-size: 16px;
            font-weight: 400;
        }
        
        .company-highlights {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .company-highlights h2 {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .highlight-item {
            margin-bottom: 20px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 8px;
            border-left: 4px solid #00b8d4;
        }
        
        .highlight-item h3 {
            font-size: 18px;
            font-weight: 700;
            color: #222;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .highlight-item h3 i {
            margin-right: 10px;
            color: #00b8d4;
        }
        
        .highlight-item p {
            color: #666;
            font-size: 15px;
            font-weight: 400;
        }
        
        .business-hours {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .business-hours h2 {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .hour-item {
            padding: 15px;
            background: #f9f9f9;
            border-radius: 8px;
        }
        
        .hour-item h3 {
            font-size: 16px;
            font-weight: 700;
            color: #222;
            margin-bottom: 5px;
        }
        
        .hour-item p {
            color: #666;
            font-weight: 400;
        }
        
        .contact-note {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(0, 184, 212, 0.05), rgba(124, 77, 255, 0.05));
            border-radius: 10px;
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .contact-note h3 {
            font-weight: 700;
            color: #00b8d4;
            margin-bottom: 10px;
        }
        
        .contact-note p {
            font-weight: 400;
        }
        
        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 28px;
            }
            
            .contact-header p {
                font-size: 16px;
            }
            
            .contact-content {
                flex-direction: column;
            }
        }
    