
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fbfd;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .header-section {
            background: linear-gradient(135deg, #3DC6C3 0%, #3D85C6 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .header-section h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
              margin-top: 50px;
        }
        
        .header-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 20px 0;
        }
        
        .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
              margin-top: 30px;
        }
        
        .contact-col {
            flex: 1 1 300px;
            min-width: 300px;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            height: 100%;
        }
        
        .contact-card h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-card h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #3DC6C3;
        }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e0e6ed;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #3D85C6;
            outline: none;
            box-shadow: 0 0 0 3px rgba(61, 133, 198, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(to right, #3DC6C3, #3D85C6);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: linear-gradient(to right, #36b3b0, #3677b3);
            transform: translateY(-2px);
        }
        
        /* Contact Info Styles */
        .contact-info {
            margin-bottom: 25px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: #3D85C6;
            font-size: 1.1rem;
            margin-top: 3px;
        }
        
        .contact-info a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: #3D85C6;
        }
        
        /* Support Buttons */
        .support-buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        
        .support-btn {
            flex: 1 1 120px;
            text-align: center;
            padding: 12px;
            border-radius: 6px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .support-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        .call-btn { background: #4CAF50; }
        .email-btn { background: #2196F3; }
        .whatsapp-btn { background: #25D366; }
        
        /* Business Hours */
        .business-hours {
            margin-top: 25px;
        }
        
        .business-hours li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #e0e6ed;
            list-style: none;
        }
        
        .business-hours span:first-child {
            font-weight: 500;
        }
        
        /* Map Styles */
        .contact-map {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 30px;
        }
        
        .contact-map iframe {
            width: 100%;
            height: 400px;
            border: 0;
            display: block;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #f5f9ff;
            padding: 60px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-item h4 {
            color: #3D85C6;
            margin-bottom: 10px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.2rem;
            }
            
            .support-buttons {
                flex-direction: column;
            }
            
            .support-btn {
                flex: 1 1 100%;
            }
            
            .contact-card {
                padding: 25px;
            }
        }
        
        
                /* Breadcrumb */
        .breadcrumb {
            background-color: #F0F0F0 !important;
            padding: 1rem 0 !important;
            border-bottom: 1px solid var(--light-gray) !important;
        }

        .breadcrumb-list {
            display: flex !important;
            flex-wrap: wrap !important;
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
            font-size: 0.9rem !important;
            font-weight: 500;
          
        }

        .breadcrumb-item {
            display: flex !important;
            align-items: center !important;
            margin-right: 0.5rem !important;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/' !important;
            margin-left: 0.5rem !important;
            color: var(--gray) !important;
        }

        .breadcrumb-link {
            color: var(--primary) !important;
            transition: var(--transition) !important;
            text-decoration: none !important;
        }

        .breadcrumb-link:hover {
            color: var(--primary-dark) !important;
             text-decoration: underline !important;
        }

        .breadcrumb-current {
            color: var(--gray) !important;
            pointer-events: none !important;
        }

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #4361ee;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1.25rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #3a0ca3;
  transform: translateY(-3px);
}



.cta-section {
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-btn {
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn.primary {
    background: linear-gradient(90deg, #3f51b5, #1a237e);
    color: white;
}

.cta-btn.primary:hover {
    background: linear-gradient(90deg, #1a237e, #3f51b5);
    transform: scale(1.05);
}

.cta-btn.secondary {
    background: #e0e0e0;
    color: #333;
}

.cta-btn.secondary:hover {
    background: #d5d5d5;
    transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .cta-card {
        padding: 2rem 1rem;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }

    .cta-card p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}


