        .v6-section-body2 {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            /*max-width: 1000px;*/
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }
        
        .wrapper-inner-left,
        .wrapper-inner-right {
            padding: 40px;
            flex: 1;
            min-width: 300px;
        }
        
        .wrapper-inner-left {
            background: #f8f9fa;
            border-right: 1px solid #e9ecef;
        }
        
        .wrapper-inner-right {
            background: white;
        }
        
        .contact-title {
            font-size: 28px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .contact-lable {
            font-size: 16px;
            color: #6c757d;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .contact-desc {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.6;
            margin-top: 20px;
        }
        
        .por-btn {
            display: inline-block;
            /*padding: 12px 24px;*/
            background: linear-gradient(135deg, #667eea 0%, ##221aa3 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .por-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }
        
        .por-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .por-btn:disabled:hover {
            transform: none;
            box-shadow: none;
        }
        
        .contanct-btn {
            margin-top: 20px;
        }
        
        .status-indicator {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .status-online {
            background: #d4edda;
            color: #155724;
        }
        
        .status-offline {
            background: #f8d7da;
            color: #721c24;
        }
        
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .online-dot {
            background: #28a745;
            animation: pulse 2s infinite;
        }
        
        .offline-dot {
            background: #dc3545;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .time-display {
            font-size: 12px;
            color: #6c757d;
            margin-top: 5px;
        }
        
        .service-hours {
            background: #e7f3ff;
            border-left: 4px solid #007bff;
            padding: 12px;
            margin-top: 15px;
            border-radius: 4px;
        }
        
        @media (max-width: 768px) {
            .v6-section-body2 {
                flex-direction: column;
            }
            
            .wrapper-inner-left {
                border-right: none;
                border-bottom: 1px solid #e9ecef;
            }
            
            .wrapper-inner-left,
            .wrapper-inner-right {
                padding: 30px 20px;
            }
        }