* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
   
}
body{ background-color: #2C2C38;}
/* ===== Base Styles ===== */
/* Base styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #2a47e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top:0px;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  z-index: 100;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0066ff;
  text-decoration: underline;
}
.nav-links .active {
  
  text-decoration: underline;
}

.auth-links {
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px #fff solid;
  border-radius: 100px;
  padding:16px 44px;
}

.auth-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.auth-links a:hover {
  color: #0066ff;
}

.divider {
  color: #cccccc;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 100;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}
.mobile-auth{display: none;}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  .mobile-auth{display: block;border: 1px #fff solid;
    border-radius: 100px;
    padding:16px 44px;}
  
  .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      color:#fff;
      background: #2a47e0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
      box-shadow: -5px 0 10px rgba(0,0,0,0.1);
      z-index: 99;
  }

  .nav-links a{color:#fff;}
  .auth-links a {color: :#fff;}
  .auth-links {
      position: fixed;
      top: 80px;
      right: 0;
      color:#2a47e0;
      width: 70%;
      background: #ffffff;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
      z-index: 98;
      
  }
  
  .nav-active {
      transform: translateX(0);
  }
  
  .toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .toggle .line2 {
      opacity: 0;
  }
  
  .toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
  }
}






.streamline{
    font-weight: 800;
    font-size: 64px;
    line-height: 112.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    }
.green {
        color: #3bd39c;
        }
.streamline-hero p{
           
            font-weight: 400;
            font-size: 20px;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
            margin-top: 20px;
            
        }
.streamline-hero {
background-color: #2a47e0;
padding: 100px 20px 0;
text-align: center;
height: 580px;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
color: #fff;
position: relative;
margin: 0 auto;
z-index: 1;
}
.streamline-hero__content{width: 792px;margin :0 auto;}
.streamline-hero__buttons {
display: flex;
justify-content: center;

flex-wrap: wrap;

margin-top: 30px;
gap: 24px;
}

.btn {

font-weight: 600;


text-decoration: none;
display: inline-block;
transition: 0.3s ease;

border-radius: 44px;
border-width: 1px;
padding-top: 19px;
padding-right: 40px;
padding-bottom: 19px;
padding-left: 40px;
gap: 10px;

border: 1px solid rgba(255, 255, 255, 0.5)


}

.btn--gradient {
    background: linear-gradient(137.12deg, #283FCD 17.08%, #2BCC98 87.63%);
    color: #fff;

}

.btn--outline {
border-color: #ffffff;
color: #fff;
background: transparent;
}


.streamline-hero__video {
margin-top: 50px;
padding: 0 20px;
position: relative;
z-index: 2;}

.video-placeholder {
background: #0e1c26;
height: 430px;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
max-width: 960px;
margin: 0 auto;
}

@media (max-width: 768px) {
.streamline-hero {
padding: 80px 20px 0;

h1 {
font-size: 2rem;
}

.video-placeholder {
height: 200px;
}
}
}


.features-section {
    background-color: #2c2c38;
    color: #ffffff;
    padding: 310px 20px 0;
    text-align: center;
  }
  
  .features-intro {
    max-width: 700px;
    margin: 0 auto 60px;
  }
  
  .features-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .features-intro p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #d4d4d4;
  }
  
  .feature-card {
    background-color: #1f44f2;
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
    padding: 70px 140px 60px 140px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: left;

  }
  
  .feature-card-content {
    flex: 1 1 400px;
    max-width: 500px;
  }
  
  .feature-card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .feature-card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .feature-card-content p {
    font-size: 1rem;
    color: #d4e4f8;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
  }
  
  .btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .feature-card-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .feature-card-image img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .feature-card {
      flex-direction: column;
    }
  
    .feature-card-content {
      text-align: center;
    }
  
    .feature-card-image {
      margin-top: 30px;
    }
  }
  /* Sticky Image on scroll for larger screens */
.feature-card  {
  position: -webkit-sticky; /* Safari support */
 position: sticky;
  align-self: flex-start;
 top:140px;
 
}

@media (max-width: 1024px) {
  .feature-card-image.sticky {
    position: static;
  }
}
/* Base styling */
.feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    color: white;
    border-radius: 80px 80px 0 0;
    flex-wrap: wrap;
  }
  
  .feature-card-content {
    flex: 1;
    min-width: 300px;
  }
  
  .feature-card-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
  }
  
  .feature-card-image img {
    max-width: 100%;
    height: auto;
  }
  
  
  
  /* Color themes */
  .feature-card.green {
    background: #1DD3A7; /* You can use your Figma hex here */
    color: #000;
    position: -webkit-sticky; /* Safari support */
    
    position: sticky;
    
    align-self: flex-start;
    
  }
  .feature-card.green p

  {color: #000;}
  .feature-card.green .btn-outline {
 
    border: 2px solid #000;
   
    color: #000;
   
   
  }
  .feature-card.purple {
    background: #1D165F;
    position: sticky;
    
  }
  
  /* Typography */
  .feature-card h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  /* Button */
  .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .feature-card {
      flex-direction: column;
      text-align: center;
      border-radius: 60px 60px 0 0;
    }
  
    .feature-card-image.sticky {
      position: static;
    }
  }
  .feature-card.cream {
    background: #fdf3d9; /* light cream background */
    color: #000;
    position: sticky;
  
  }
  .feature-card.cream p{color: #000;}
  /* Darker outline button for cream section */
  .btn-outline.dark {
    color: #000;
    border-color: #000;
  }
  
  .btn-outline.dark:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  
  /* Pricing Section */
.pricing-section {
    background-color: #1f35d1;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    margin-top: 100px;
    position: sticky;
   
  }
  
  .pricing-section .tagline {
    color: #00e6a4;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .pricing-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .pricing-subtitle {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .btn-gradient {
    background: linear-gradient(to right, #00e6a4, #3366ff);
    padding: 12px 28px;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
  }
  
  .testimonial-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .testimonial-subtitle {
    color: #2e49ff;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .testimonial-slider {
    overflow: hidden;
    position: relative;
    max-width: 1100px;
    margin: auto;
  }
 
  .slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
  }
  
  .testimonial-slide {
    display: flex;
    min-width: 100%;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .testimonial-card {
    background: white;
     padding: 20px;
    border-radius: 15px;
    width: 500px;
    box-sizing: border-box;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
  }
  
  .testimonial-img {width: 200px;}
  .testimonial-content{width: 280px;margin-left: 15px;}
  .testimonial-content p{margin-bottom: 20px;}

  .testimonial-card img {
   
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .stars {
    color: #ffcb00;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .testimonial-dots {
    margin-top: 20px;
  }
  
  .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #cfd6ff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .dot.active {
    background: #2e49ff;
  }
  
  @media (max-width: 768px) {
    .testimonial-slide {
      flex-direction: column;
      align-items: center;
    }
  
    .testimonial-card {
      width: 90%;
    }
  }
  .faq-section {
    
    color: #ffffff;
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    font-family: 'Inter', sans-serif;
  }
  
  .faq-section h2 {
    font-size: 2.8rem;
    color: #00dba2;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .faq-item {
    border-bottom: 1px solid #3a3a4f;
    margin-bottom: 15px;
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question .icon {
    color: #00dba2;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 10px;
  }
  
  .faq-answer p {
    margin: 0;
    padding: 10px 0 20px;
    color: #ccc;
  }
  
  .faq-item.active .faq-answer {
    max-height: 300px;
  }
  
  .footer {
    background-color: #2A39D8;
    color: white;
    font-family: 'Inter', sans-serif;
    
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 40px 0;
  }
  
  .footer-logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .footer-col {
    flex: 1 1 200px;
  }
  
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    color: #dcdcdc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #ffffff;
  }
  
  .footer-col p,
  .footer-col address {
    margin: 10px 0;
    color: #f0f0f0;
    font-size: 15px;
    text-align: left;
  }
  
  .social-icons a {
    background: white;
    color: #2A39D8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    background-color: #1e1e1e;
    color: white;
  }
  
  .footer-bottom {
    background-color: #0d0d0d;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 15px;
    color: white;
  }
  



  .pricing-section2{
    background-color: #2C2C38;
    color: #fff;
    
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .pricing-header span {
    color: #23df8d;
  }
  .pricing-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #ccc;
  }
  
  .toggle-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: #fff;
  }
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #999;
    border-radius: 34px;
    transition: 0.4s;
  }
  .slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
  }
  input:checked + .slider {
    background-color: #23df8d;
  }
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  .save-tag {
    color: #23df8d;
    font-weight: 500;
  }
  
  .plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .plan {
    background: #12131e;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }
  .plan.active {
    background: #00e19b;
    color: #000;
    transform: scale(1.05);
  }
  .plan h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .plan p {
    font-size: 0.9rem;
    color: #ccc;
  }
  .plan .price {
    font-size: 2rem;
    margin: 1rem 0;
  }
  .plan .price span {
    font-size: 0.9rem;
  }
  .plan button {
    background: #000;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: #fff 1px solid;
   
    cursor: pointer;
    margin-bottom: 1rem;
  }
  .plan ul {
    list-style: none;
    padding: 0;
  }
  .plan ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .addons {
    margin-top: 3rem;
    background: #12131e;
    padding: 2rem;
    border-radius: 12px;
  }
  .addons h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .addons button {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1rem;
    border-radius: 30px;
    cursor: pointer;
  }
  .addons ul {
    list-style: none;
    padding: 0;
    color: #999;
  }
  .addons ul li {
    margin: 0.5rem 0;
    padding: 8px 0;
    font-size: 16px;
    display: flex;
    color: #fff;
    gap: 10px;
  }

  .contact-section {
   
    padding: 4rem 2rem;
    font-family: 'Poppins', sans-serif;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
    align-items: flex-start;
  }
  
  .contact-info {
    background: #353a43;
    padding: 2rem;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .info-item i {
    font-size: 1.5rem;
    color: #ffffff;
    padding-top: 4px;
    min-width: 24px;
  }
  .info-item h4 {
    margin: 0;
    font-size: 1.1rem;
  }
  .info-item p {
    margin: 0.2rem 0 0;
    font-size: 0.95rem;
    color: #ccc;
  }
  
  .contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
  }
  
  .contact-form textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .contact-form button {
    margin-top: 1rem;
    background: linear-gradient(to right, #1f3bff, #23df8d);
    color: #fff;
    border: none;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .contact-form button:hover {
    opacity: 0.9;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  }
  

  .contact-banner {
    background-color: #2643e9; /* match the blue from the image */
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
   
  }
  
  .contact-banner h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
  }
  
  .contact-banner p {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 400;
  }
  
  @media (max-width: 768px) {
    .contact-banner h1 {
      font-size: 2.2rem;
    }
  
    .contact-banner p {
      font-size: 1rem;
    }
  
    .contact-banner {
      border-bottom-left-radius: 80px;
      border-bottom-right-radius: 80px;
    }
  }
  

  /* Base Typography Adjustments for Smaller Screens */
@media (max-width: 1024px) {
    h1, .streamline {
      font-size: 2.5rem;
    }
  
    .streamline-hero__content {
      width: 100%;
      padding: 0 20px;
    }
  
    .streamline-hero p {
      font-size: 16px;
      line-height: 1.4;
    }
  
    .feature-card {
      padding: 60px 20px;
      border-radius: 60px 60px 0 0;
    }
  
    .feature-card-content h3 {
      font-size: 1.75rem;
    }
  
    .feature-card-content h4 {
      font-size: 1rem;
    }
  
    .feature-card-content p {
      font-size: 0.95rem;
    }
  }
  
  /* Medium Screens (Tablets) */
  @media (max-width: 768px) {
    nav {
      flex-direction: row;
      padding: 15px 20px;
    }
  
    .nav-links,
    .auth-links {
      width: 100%;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
  
    .streamline {
      font-size: 2rem;
    }
  
    .streamline-hero {
      height: auto;
      padding: 80px 20px;
    }
  
    .streamline-hero__buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .btn,
    .btn-outline {
      padding: 14px 28px;
      font-size: 0.95rem;
    }
  
    .feature-card {
      flex-direction: column;
      text-align: center;
      padding: 50px 20px;
    }
  
    .feature-card-image {
      margin-top: 30px;
      order: -1;
    }
  
    .pricing-section {
      padding: 80px 20px;
    }
  
    .testimonial-card {
      flex-direction: column;
      width: 100%;
    }
  
    .testimonial-img,
    .testimonial-content {
      width: 100%;
      margin: 0;
      text-align: center;
    }
  
    .faq-section h2 {
      font-size: 2rem;
    }
  
    .faq-question {
      font-size: 1rem;
      padding: 15px;
    }
  }
  
  /* Small Screens (Mobile Phones) */
  @media (max-width: 480px) {
    .logo {
      font-size: 20px;
    }
  
    .streamline {
      font-size: 1.6rem;
    }
  
    .streamline-hero {
      padding: 60px 15px;
    }
  
    .feature-card-content h3 {
      font-size: 1.5rem;
    }
  
    .btn,
    .btn-outline,
    .btn-gradient {
      font-size: 0.9rem;
      padding: 12px 24px;
    }
  
    .testimonial-title {
      font-size: 1.8rem;
    }
  
    .faq-section {
      padding: 40px 15px;
    }
  
    .pricing-title {
      font-size: 1.6rem;
    }
  
    .testimonial-card {
      padding: 15px;
    }
  }

  @media (max-width: 1024px) {
    .pricing-header h2 {
      font-size: 2rem;
      text-align: center;
    }
  
    .pricing-header p {
      font-size: 1rem;
      padding: 0 20px;
      text-align: center;
    }
  
    .plans {
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
  
    .plan {
      width: 45%;
      margin: 20px auto;
    }
  
    .addons {
      padding: 20px;
      text-align: center;
    }
  
    .addons ul {
      padding: 0;
      list-style: none;
    }
  }
  
  @media (max-width: 768px) {
    .plans {
      flex-direction: column;
      align-items: center;
    }
  
    .plan {
      width: 90%;
      padding: 20px;
      box-sizing: border-box;
    }
  
    .toggle-container {
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      font-size: 14px;
      text-align: center;
    }
  
    .toggle-container .save-tag {
      display: block;
      margin-top: 10px;
    }
  
    .pricing-header h2 {
      font-size: 1.8rem;
    }
  
    .addons h4 {
      font-size: 1.5rem;
    }
  
    .addons ul li {
      font-size: 14px;
    }
  
    .addons button {
      font-size: 14px;
      padding: 10px 20px;
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .pricing-header h2 {
      font-size: 1.5rem;
    }
  
    .plan {
      width: 100%;
      margin: 15px 0;
    }
  
    .price {
      font-size: 1.5rem;
    }
  
    .plan button {
      padding: 10px;
      width: 100%;
      font-size: 1rem;
    }
  
    .plan ul li {
      font-size: 0.9rem;
      padding: 5px 0;
    }
  
    .toggle-container {
      font-size: 13px;
      flex-direction: column;
      align-items: center;
    }
  
    .addons ul li {
      font-size: 13px;
      line-height: 1.6;
    }
  }
  .plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
  }
  .plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .plan ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 16px;
    color: #fff;
  }
  
  .plan ul li i , .addons ul li i{
    color: #2F2F3C;
 /* or any green color that fits your brand */
    font-size: 16px;
  }
  .plan.active ul li i {
    color: #283FCD;
 /* or any green color that fits your brand */
    font-size: 16px;
  }
  .plan.active p , .plan.active ul li  {
   
    color: #000;
}
.plan.active button {
    background: #fff;
    color: #000;
    padding: 0.6rem 2.2rem;
    border-radius: 30px;
    border: #fff 1px solid;
   
    cursor: pointer;
    margin-bottom: 1rem;
  }
  html {
    scroll-behavior: smooth;
  }
  