 :root {
      --primary: #025ebb;
      --primary-dark: #024ea3;
      --secondary: #ff9800;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --success: #28a745;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html, body {
      height: 100%;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    a:hover {
      color: var(--secondary);
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }
    
    .btn-primary {
      background-color: var(--secondary);
      color: white;
    }
    
    .btn-primary:hover {
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(121, 64, 37, 0.3);
    }
    
    
    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    
    .btn-outline:hover {
      background-color: var(--primary-dark);
      color: white;
    }
    
    .section {
      padding: 80px 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-title p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .text-center {
      text-align: center;
    }
    
    .bg-light {
      background-color: var(--light);
    }
    
    .bg-white {
      background-color: white;
    }
    
    .shadow {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .rounded {
      border-radius: 10px;
    }
    
    /* Header & Navigation */
    header {
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }
    
    .logo {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .logo img {
      margin-right: 10px;
      height: 48px;
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
    }
    
    .nav-item {
      margin-left: 30px;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--dark);
      position: relative;
    }
    
    .nav-link:hover, .nav-link.active {
      color: var(--primary);
    }
    
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary);
    }
    
    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://appliancecare.shop/images/led_tv_repair.webp') no-repeat center center/cover;
      color: white;
      padding: 120px 0;
      text-align: center;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
    }
    
    .service-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .service-link {
      background: rgba(255, 255, 255, 0.1);
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .service-link:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }
    
    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    
    .service-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .service-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }
    
    .service-badge {
      background: var(--primary);
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      position: absolute;
      top: 15px;
      left: 15px;
    }
    
    .service-content {
      padding: 20px;
    }
    
    .service-content h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    .service-content p {
      color: var(--gray);
      margin-bottom: 20px;
    }
    
    /* Why Choose Us Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }
    
    .feature-card {
      text-align: center;
      padding: 30px 20px;
      background: white;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
    }
    
    .feature-card h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .feature-card p {
      color: var(--gray);
    }
    
    .seo-content {
      background: white;
      padding: 40px;
      border-radius: 10px;
      margin-bottom: 30px;
    }
    
    .seo-content h2 {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .seo-content p {
      margin-bottom: 25px;
      line-height: 1.7;
    }
    
    .service-areas {
      background: var(--light);
      padding: 20px;
      border-radius: 10px;
      margin-top: 30px;
    }
    
    .service-areas h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    /* Pricing Section */
    .pricing-table {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .price-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }
    
    .price-card:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .price-card h4 {
      font-size: 1.2rem;
      font-weight: 600;
    }
    
    .price-amount {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .warranty-badge {
      background: var(--success);
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-left: 10px;
    }
    
    .pricing-note {
      background: #e7f3ff;
      padding: 15px;
      border-radius: 8px;
      margin-top: 20px;
      display: flex;
      align-items: center;
    }
    
    .pricing-note i {
      color: var(--primary);
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    /* FAQ Section */
    .accordion-item {
      background: white;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .accordion-header {
      padding: 20px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .accordion-header:hover {
      background: rgba(2, 94, 187, 0.05);
    }
    
    .accordion-header.active {
      background: rgba(2, 94, 187, 0.1);
      color: var(--primary);
    }
    
    .accordion-content {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .accordion-content.active {
      padding: 0 20px 20px;
      max-height: 500px;
    }
    
    /* Booking Section */
    .booking-form {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(2, 94, 187, 0.1);
    }
    
    .alert-warning {
      background: #fff3cd;
      color: #856404;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }
    
    .alert-warning i {
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .contact-info {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .contact-details h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .map-container {
      border-radius: 10px;
      overflow: hidden;
      height: 400px;
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    
     
        /* Disclaimer Card Styling */
.content-card.disclaimer {
    background-color: #fff7e6;
    border-left: 4px solid #ff9900;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: "Arial", sans-serif;
}

/* Title */
.content-card.disclaimer h2 {
    font-size: 1.25rem; /* responsive font */
    margin-bottom: 12px;
    color: #cc6600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Paragraph */
.content-card.disclaimer p {
    font-size: 1rem; /* responsive */
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}

/* Icon */
.content-card.disclaimer i {
    color: #ff9900;
    font-size: 1.4rem;
}
    
    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 20px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-col h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: white;
    }
    
    .footer-col p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Floating Actions */
    .floating-actions {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .floating-action {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      color: white;
    }
    
    .floating-action:hover {
      transform: scale(1.1);
    }
    
    .floating-whatsapp {
      background: #25d366;
    }
    
    .floating-call {
      background: var(--primary);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .mobile-toggle {
        display: block;
      }
      
      .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      }
      
      .nav-menu.active {
        left: 0;
      }
      
      .nav-item {
        margin: 0 0 25px 0;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
      }
      
      .price-card {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .price-card > div {
        margin-top: 10px;
      }
      
      .booking-form {
        padding: 30px 20px;
      }
    }
    
    @media (max-width: 576px) {
      .hero {
        padding: 80px 0;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section-title h2 {
        font-size: 1.8rem;
      }
      
      .seo-content {
        padding: 25px 20px;
      }
    }