
    /* Namespaced styles to prevent global conflicts */
    .karvon-warranty-container {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #111;
      background-color: #fff;
      padding: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .karvon-warranty-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .karvon-warranty-container .warranty-container {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .karvon-warranty-container .hero-section {
      background: linear-gradient(135deg, #000 0%, #222 100%);
      color: #fff;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .karvon-warranty-container .hero-section::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
      transform: rotate(30deg);
      z-index: 1;
    }

    .karvon-warranty-container .hero-content {
      position: relative;
      z-index: 2;
    }

    .karvon-warranty-container .hero-section h1 {
      font-size: 3.2rem;
      font-weight: 800;
      margin-bottom: 15px;
      position: relative;
      letter-spacing: -0.5px;
    }

    .karvon-warranty-container .hero-section h2 {
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 25px;
      position: relative;
      opacity: 0.9;
      font-weight: 300;
    }

    .karvon-warranty-container .hero-section p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      opacity: 0.85;
      position: relative;
      color: #e0e0e0;
    }

    .karvon-warranty-container .policy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 50px 40px;
    }

    .karvon-warranty-container .policy-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 35px 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 4px solid #111;
      position: relative;
      z-index: 1;
    }

    .karvon-warranty-container .policy-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .karvon-warranty-container .policy-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: #111;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: -1;
    }

    .karvon-warranty-container .policy-card:hover::before {
      transform: scaleX(1);
    }

    .karvon-warranty-container .policy-card h3 {
      font-size: 1.7rem;
      margin-bottom: 20px;
      color: #111;
      display: flex;
      align-items: center;
    }

    .karvon-warranty-container .policy-card h3 i {
      margin-right: 15px;
      color: #111;
      font-size: 1.8rem;
    }

    .karvon-warranty-container .policy-card p {
      margin-bottom: 15px;
      color: #444;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .karvon-warranty-container .highlight {
      background: #f8f8f8;
      border-left: 4px solid #111;
      padding: 15px 20px;
      margin: 20px 0;
      border-radius: 0 8px 8px 0;
    }

    .karvon-warranty-container .conclusion-section {
      padding: 60px 40px;
      background: #f2f2f2;
      text-align: center;
      border-top: 1px solid rgba(0,0,0,0.05);
    }

    .karvon-warranty-container .conclusion-section h3 {
      font-size: 2rem;
      margin-bottom: 25px;
      color: #111;
    }

    .karvon-warranty-container .conclusion-section p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #444;
      line-height: 1.8;
    }

    .karvon-warranty-container .footer-note {
      text-align: center;
      padding: 25px;
      color: #666;
      font-size: 0.9rem;
      border-top: 1px solid #eee;
      background: #fafafa;
    }

    .karvon-warranty-container .warranty-badge {
      display: inline-block;
      background: #000;
      color: #fff;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 0.8rem;
      margin-top: 20px;
      letter-spacing: 1px;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .karvon-warranty-container .animated {
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .karvon-warranty-container {
        padding: 15px;
      }

      .karvon-warranty-container .hero-section {
        padding: 40px 20px;
      }

      .karvon-warranty-container .hero-section h1 {
        font-size: 2.5rem;
      }

      .karvon-warranty-container .hero-section h2 {
        font-size: 1.5rem;
      }

      .karvon-warranty-container .policy-grid {
        padding: 30px 20px;
        grid-template-columns: 1fr;
      }

      .karvon-warranty-container .conclusion-section {
        padding: 40px 20px;
      }
    }

    @media (max-width: 480px) {
      .karvon-warranty-container .hero-section h1 {
        font-size: 2rem;
      }
      
      .karvon-warranty-container .hero-section h2 {
        font-size: 1.3rem;
      }
      
      .karvon-warranty-container .policy-card {
        padding: 25px 20px;
      }
      
      .karvon-warranty-container .policy-card h3 {
        font-size: 1.5rem;
      }
    }
  