
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   :root {
      --primary-blue: #2d9cfa;
      --accent-blue: #4fc3f7;
      --light-bg: #f6fbfe;
      --section-bg: #eaf7ff;
      --text-dark: #222;
      --text-light: #666;
      --button-bg: #2d9cfa;
      --button-hover: #2386d9;
      --button-text: #fff;
      --card-bg: #fff;
      --shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
      --border-radius: 12px;
    }
    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', Arial, sans-serif;
      background: transparent;
      color: var(--text-dark);

    }
    .legal-link {
      color: blue;
      text-decoration: none;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 32px 80px 0 80px;
      background: #fff;
    }
    .logo {
      display: flex;
      align-items: center;
      font-weight: 700;
      font-size: 1.5rem;
      gap: 12px;
    }
    .logo img {
      width: 36px;
      height: 36px;
    }
    nav {
      display: flex;
      gap: 32px;
      font-size: 1rem;
    }
    nav a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 400;
      transition: color 0.2s;
    }
    nav a.active {
      color: var(--primary-blue);
    }
    nav a:hover {
      color: var(--primary-blue);
    }
    .chrome-btn {
      background: var(--card-bg);
      border: 1.5px solid  #2C2C2C;
      border-radius: 8px;
      padding: 12px 32px;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      cursor: pointer;
      transition: box-shadow 0.2s;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: all 0.2s;
    }
    .chrome-btn:hover {
      transform: scale(0.8);
    }
    .chrome-btn img {
      width: 20px;
      height: 20px;
    }
    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 120px;
      background: #fff;
      background-image: url(/assets/hero-bg-2.png);
      background-size: cover;
      background-position: left bottom;
      background-repeat: no-repeat;
    }
    .hero-content {
      max-width: 720px;
    }
    .hero-title {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .hero-title .highlight {
      color: var(--primary-blue);
    }
    .hero-desc {
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 32px;
    }
    .hero-badges {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
    }
    .hero-badges span {
      
      color: var(--primary-blue);
      font-size: 0.95rem;
      padding: 4px 12px;
      border-radius: 12px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .testimonial-card {
      text-align: left;
    }
    .hero-cta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 10px;
      align-items: flex-start;
    }
    .cta-btn {
      background: var(--button-bg);
      color: var(--button-text);
       text-decoration: none;
       border-style: solid;
       border-width: 3px 3px 3px 3px;
       border-color: var( --e-global-color-de2e82f );
       border-radius: 8px 8px 8px 8px;
       box-shadow: 0px 0px 25px 0px rgba(11.00000000000001, 158.00000000000014, 250.00000000000003, 0.72);
      
      display: flex;
      align-items: center;
      gap: 16px;
     
      padding: 28px 32px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;

      transition: all 0.2s;
    }
    .cta-btn.v2 {
      border: none;
      box-shadow: none;
      font-size: 26px;
    }
    .cta-btn:hover {
      background: var(--button-hover);
      transform: scale(0.8);
    }
    .hero-rating {
      font-size: 0.95rem;
      color: #bdbdbd;
      margin-top: 8px;
    }
    .hero-img {
      width: 820px;
      height: 520px;
 
      border-radius: var(--border-radius);
     
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-img img {
      width: 90%;
      height: 90%;
      object-fit: contain;
      border-radius: 10px;
    }
    /* Testimonials */
    .testimonials-section {
      background: var(--section-bg);
      padding: 60px 0 40px 0;
      text-align: center;
    }
    .testimonials-title {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 52px;
        line-height: 62px;
        letter-spacing: -2px;
        text-align: center;
        margin-bottom: 40px;
    }
    .testimonials-title .highlight {
        font-weight: 600;
    }
    .testimonials-subtitle {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.2px;
        text-align: center;
        color: #0B9EFA;
    }
    .testimonials-list {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 24px;
    }
    .testimonial {
     
      border-radius: var(--border-radius);
     
     
      max-width: 680px;
      text-align: left;
      display: flex;
  
      align-items: flex-start;
      gap: 18px;
    }
    .testimonial .user-img {
      width: 239px;
      height: 239px;
      border-radius: 15px;
      object-fit: cover;
      margin-bottom: 8px;
    }
    .testimonial-stars {
      color: var(--primary-blue);
      font-size: 1.1rem;
      margin-bottom: 6px;
    }
    .testimonial-text {
        font-family: Roboto;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0px;

      margin-bottom: 8px;
    }
    .testimonial-user {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.2px;
        vertical-align: middle;

    }
    .testimonial-user span {
        font-weight: 400;
        color: #B0B0B0;
        margin-left: 16px;
    }
  
    /* Features Section */
    .features-section {
      padding: 60px 0 40px 0;
      display: flex;
      flex-direction: column;
      gap: 80px;
    }
    .feature-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 200px;
      padding: 192px 0;
    }
    .feature-row-var {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px;
        margin: 0 auto;
        gap: 100px;
        padding: 120px 0;
      }
    .feature-row.full-width {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #E4F8FF;
      max-width: none;
    }
    .feature-content-container {
      max-width: 1200px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 200px;

    }
    .feature-row.reverse {
      flex-direction: row-reverse;
    }
    .feature-content-container.reverse {
      flex-direction: row-reverse;
    }
    .add-to-chrome-button {
      
      gap: 12px;
      text-decoration: none;
      color: #fff;
      border-radius: 8px;
      padding: 16px 24px;
      font-family: "Open Sans", Sans-serif;
      font-size: 0.9vw;
      font-weight: 400;
      text-transform: capitalize;
      background-color: #0B9EFA;
      transition: transform 0.2s;
      display: inline-block;
      box-shadow: 0px 0px 25px 0px rgba(11.00000000000001, 158.00000000000014, 250.00000000000003, 0.72);
    }
    .add-to-chrome-button.bordered {
      display: flex !important;
      justify-content: center;
      align-items: center;
      min-width: 232px;
      width: 232px;
      border: 1px solid #fff;
    }
    .add-to-chrome-button:hover {
      transform: scale(0.8);
    }
    .feature-img {
      width: 550px;
      height: 465px;
     
      border-radius: var(--border-radius);
     
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-img img {
        max-width: 550px;
      object-fit: cover;
      border-radius: 10px;
    }
    .feature-img-var  {
        width: 50%;
     
    }
    .feature-img-var img {
        max-width: 785px;
      object-fit: cover;
      border-radius: 10px;
    }
    .feature-content {
      max-width: 420px;
    }
    .feature-content-var {
        width: 40%;
        max-width: 560px;
      }
    .feature-title {
        font-family: Montserrat;
        font-weight: 700;
        font-size: 52px;
        line-height: 120%;
        letter-spacing: 0%;
        vertical-align: middle;

      margin-bottom: 12px;
    }
    .feature-desc {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0%;
        vertical-align: middle;

      margin-bottom: 18px;
      
    }
    .feature-desc-var {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0%;
        vertical-align: middle;

      margin-bottom: 18px;
    }
    .feature-link {
      color: var(--primary-blue);
      font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;

      text-decoration: underline;
      cursor: pointer;
    }
    /* FAQ Section */
    .faq-section {
      background: var(--section-bg);
      padding: 80px;
      text-align: center;
      display: flex;
      justify-content: space-between;
    }
    .faq-content {
        max-width: 650px;
        gap: 80px;
    }
    .faq-title {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 42px;
        line-height: 120%;
        letter-spacing: 0%;
        vertical-align: middle;

      margin-bottom: 18px;
    }
    .faq-subtitle {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0%;
        vertical-align: middle;

      margin-bottom: 32px;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
      max-width: 700px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--card-bg);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 16px 24px;
      font-size: 1rem;
      text-align: left;
      width: 100%;
      cursor: pointer;
    }
    .faq-item p:first-child {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #31288A;
    }
    .faq-item p:last-child {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #2C2C2C;
        display: none;
    }
    .faq-item.active  p:last-child{
        display: block; 
    }
    /* Footer */
    footer {
      background: #222;
      color: #fff;
      text-align: center;
      font-size: 0.95rem;
      padding: 18px 0;
      letter-spacing: 0.02em;
    }
    .faq-title {
        padding-right: 30px;
     }
     .thankyou-title {
        font-family: Montserrat;
font-weight: 700;
font-size: 48px;
line-height: 120%;
letter-spacing: 0%;
text-align: center;
color:  #0B9EFA;

     }
    @media (max-width: 1500px) {
      .add-to-chrome-button {
        font-size: 1.2vw;
      }
      .testimonial {
        flex-direction: column;
        max-width: 400px;
      }
      .hero-content {
        max-width: 50%;
      }
      .hero {
        padding: 40px;;
      }
      .hero-img {
        width: 400px
      }
      .feature-row {
        gap: 40px;
        padding: 40px;
      }
     
      .faq-section {
        flex-direction: column;
      }
      .faq-content {
        max-width: 100%;
      }
      .feature-content-container {
        gap: 40px;
      }
     .faq-title {
        font-size: 32px;
     }
     .feature-img img {
        width: 300px;
     }
      
      
    }
   
    .ccpa-table {
      overflow-x: auto
  }
  
  .ccpa-table table {
      border-collapse: collapse;
      width: 100%
  }
  
  .ccpa-table thead {
      border-bottom: 3px solid
  }
  
  .ccpa-table tfoot {
      border-top: 3px solid
  }
  
  .ccpa-table td,.ccpa-table th {
      border: 1px solid;
      padding: .5em
  }
  
  .ccpa-table .has-fixed-layout {
      table-layout: fixed;
      width: 100%
  }
  
  .ccpa-table .has-fixed-layout td,.ccpa-table .has-fixed-layout th {
      word-break: break-word
  }
  
  .ccpa-table.aligncenter,.ccpa-table.alignleft,.ccpa-table.alignright {
      display: table;
      width: auto
  }
  
  .ccpa-table.aligncenter td,.ccpa-table.aligncenter th,.ccpa-table.alignleft td,.ccpa-table.alignleft th,.ccpa-table.alignright td,.ccpa-table.alignright th {
      word-break: break-word
  }
  
  .ccpa-table .has-subtle-light-gray-background-color {
      background-color: #f3f4f5
  }
  
  .ccpa-table .has-subtle-pale-green-background-color {
      background-color: #e9fbe5
  }
  
  .ccpa-table .has-subtle-pale-blue-background-color {
      background-color: #e7f5fe
  }
  
  .ccpa-table .has-subtle-pale-pink-background-color {
      background-color: #fcf0ef
  }
  
  .ccpa-table.is-style-stripes {
      background-color: initial;
      border-bottom: 1px solid #f0f0f0;
      border-collapse: inherit;
      border-spacing: 0
  }
  
  .ccpa-table.is-style-stripes tbody tr:nth-child(odd) {
      background-color: #f0f0f0
  }
  
  .ccpa-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
      background-color: #f3f4f5
  }
  
  .ccpa-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
      background-color: #e9fbe5
  }
  
  .ccpa-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
      background-color: #e7f5fe
  }
  
  .ccpa-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
      background-color: #fcf0ef
  }
  
  .ccpa-table.is-style-stripes td,.ccpa-table.is-style-stripes th {
      border-color: #0000
  }
  
  .ccpa-table .has-border-color td,.ccpa-table .has-border-color th,.ccpa-table .has-border-color tr,.ccpa-table .has-border-color>* {
      border-color: inherit
  }
  
  .ccpa-table table[style*=border-top-color] tr:first-child,.ccpa-table table[style*=border-top-color] tr:first-child td,.ccpa-table table[style*=border-top-color] tr:first-child th,.ccpa-table table[style*=border-top-color]>*,.ccpa-table table[style*=border-top-color]>* td,.ccpa-table table[style*=border-top-color]>* th {
      border-top-color: inherit
  }
  
  .ccpa-table table[style*=border-top-color] tr:not(:first-child) {
      border-top-color: initial
  }
  
  .ccpa-table table[style*=border-right-color] td:last-child,.ccpa-table table[style*=border-right-color] th,.ccpa-table table[style*=border-right-color] tr,.ccpa-table table[style*=border-right-color]>* {
      border-right-color: inherit
  }
  
  .ccpa-table table[style*=border-bottom-color] tr:last-child,.ccpa-table table[style*=border-bottom-color] tr:last-child td,.ccpa-table table[style*=border-bottom-color] tr:last-child th,.ccpa-table table[style*=border-bottom-color]>*,.ccpa-table table[style*=border-bottom-color]>* td,.ccpa-table table[style*=border-bottom-color]>* th {
      border-bottom-color: inherit
  }
  
  .ccpa-table table[style*=border-bottom-color] tr:not(:last-child) {
      border-bottom-color: initial
  }
  
  .ccpa-table table[style*=border-left-color] td:first-child,.ccpa-table table[style*=border-left-color] th,.ccpa-table table[style*=border-left-color] tr,.ccpa-table table[style*=border-left-color]>* {
      border-left-color: inherit
  }
  
  .ccpa-table table[style*=border-style] td,.ccpa-table table[style*=border-style] th,.ccpa-table table[style*=border-style] tr,.ccpa-table table[style*=border-style]>* {
      border-style: inherit
  }
  
  .ccpa-table table[style*=border-width] td,.ccpa-table table[style*=border-width] th,.ccpa-table table[style*=border-width] tr,.ccpa-table table[style*=border-width]>* {
      border-style: inherit;
      border-width: inherit
  }

  .wrapper-before {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background: #F0F0F0;
}
.container-before {
    margin-top: 10px;
    width: 800px;
    padding: 24px;
    background: #FFF;
    border-radius: 12px;
}
.container-before.v2 {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}
.bluetop {
  background-color: #0368FD;
  padding: 20px;
}
.whitebottom {
  background-color: #FFF;
  padding: 20px;
}
.bluetop .description-before {
  color: #FFF !important;
}
.bluetop .title-before {
  color: #FFF !important;
}
.title-before {
  font-size: 28px;
  font-weight: 600;
  color: #272727;
  font-family: Poppins;
  margin-bottom: 24px;

}
.description-before {
  font-size: 16px;
  font-weight: 400;
  font-family: Open Sans;
  margin-bottom: 24px;
 color: #272727;
 line-height: 1.5;
}
.ff-addons {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.button-before {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 600;
  background-color: #0368FD;
  padding: 16px 24px 16px 24px;
  color: #FFF;
  border-radius: 3px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.button-before:hover {
  transform: scale(1.05);
}
.steps-containerv2 {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 50%;
  height: 400px;
}
.step-text-ty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}