  * {
      scroll-behavior: smooth;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    p {
      /* font-family: 'roboto';  */
      font-size: 18px;
      font-weight: 400;
      color: #000000d6;
    }

    a {
      text-decoration: none;
    }

    body {
      font-family: 'inter', sans-serif;
      line-height: 1.6;
      color: #333;
      /* background: #f8f9fa; */

    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .logo-div {
      width: 100%;
      padding-bottom: 20px;
    }

    .logo-div img {
      width: 20%;
    }

    /* Hero Section */
    .hero {
      background-color: #fdecd0;
      padding: 20px 0px 80px 0px;
      text-align: center;
      position: relative;
      overflow: hidden;
      font-family: 'inter', sans-serif;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: rgba(0,0,0,0.3); */
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      line-height: 70px;
      /* text-transform: capitalize; */
      letter-spacing: 0;
      margin-bottom: 20px;
      /* text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
           font-family: Outfit; */
      color: #293e52;
      font-size: 58px;
      font-weight: 800;
    }

    .hero p {
      font-size: 24px;
      margin-bottom: 30px;
      max-width: 850px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      display: inline-block;
      background: #008a06;
      color: white;
      padding: 18px 40px;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.2rem;
      font-weight: 600;
      transition: all 0.3s ease;
      /*text-transform: uppercase;*/
      letter-spacing: 1px;
      box-shadow: 0 8px 25px lab(#f05030);
    }

    .cta-button:hover {
      background: #df8e2d;
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(#f05030d5);
    }

    .btn-custom {
      text-decoration: none;
      color: white;
    }

    .trust-signals {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .trust-badge {
      background: #df8f2dc9;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      backdrop-filter: blur(10px);
      color: white;
    }

    .trust-badge span {
      font-size: 18px;
    }

    .countdown {
      background: #df8f2dc9;
      padding: 15px 25px;
      border-radius: 10px;
      margin-top: 20px;
      font-size: 1.1rem;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }

    /* Section Styling */
    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #2c3e50;
      font-weight: 700;
    }

    .p-class {
      font-size: 24px;
      color: #666;
      margin-bottom: 20px;
      text-align: center;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Pain Points Section */
    .pain-points {
      background: white;
    }

    .pain-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .pain-item {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 15px;
      border-left: 5px solid #e4a352;
      transition: transform 0.3s ease;
      text-align: center;
    }

    .pain-item:hover {
      transform: translateY(-5px);
    }

    .pain-item h3 {
      color: #bd6118;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .iframe-custom {
      width: 80%;
      height: 500px;
    }

    /* Solution Section */
    .solution {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 50px 0px 30px 0px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .feature-card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #f05030;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #e4a352;
    }

    .feature-card p {
      color: #666;
      line-height: 1.8;
    }

    /* Social Proof Section */
    .social-proof {
      background: white;
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .testimonial {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .testimonial-content {
      font-style: italic;
      margin-bottom: 20px;
      color: #555;
    }

    .testimonial-author {
      font-weight: 600;
      color: #2c3e50;
    }

    .btn-form {
      background: #f05030;
      color: white;
      padding: 18px 20px;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      text-transform: uppercase;
      /* letter-spacing: 1px; */
      box-shadow: 0 8px 25px lab(#f05030);
    }

    .insta-img {
      width: 22px;
      padding-right: 5px;
    }

    /* Why Choose Section */
    .why-choose {
      background: #f4f5f7;
      color: white;
    }

    .why-choose .section-title,
    .why-choose .section-subtitle {
      color: #293e52;
    }

    .advantages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
      color: #293e52;
    }

    .advantage {
      text-align: center;
      padding: 30px;
      background: rgba(255, 255, 255, 0.1);
      background: white;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid;
    }

    .advantage h3 {
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    /* CTA Section */
    .bg-markclass {
      background: #ffffff !important;
      padding: 40px 0px 0px 0px !important;
    }

    .cta-section {
      background: #fdecd0;
      color: white;
      text-align: center;
      padding: 80px 0;
    }

    .cta-section h2 {
      color: #293e52;
      max-width: 80%;
      margin: 0px auto;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .demo-form {
      background: white;
      padding: 40px;
      border-radius: 20px;
      max-width: 600px;
      margin: 40px auto 0;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .demo-form h3 {
      color: #2c3e50fd;
      margin-bottom: 30px;
      font-size: 1.8rem;
    }

    .risk-reversal {
      background: #e4a352;
      color: white;
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      margin-top: 40px;
    }

    .form-group {
      margin-bottom: 20px;
      text-align: left;
    }

    .form-group label {
      display: block;
      margin-bottom: 5px;
      color: #555;
      font-weight: 600;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: #28a745;
    }

    .form-submit {
      background: #f05030;
      color: white;
      padding: 15px 40px;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .form-submit:hover {
      background: #218838;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .faq {
      background: white;
      padding-bottom: 30px;
    }

    .faq-item {
      margin-bottom: 20px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      overflow: hidden;
    }

    .faq-question {
      background: #f8f9fa;
      padding: 20px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.1rem;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: #e9ecef;
    }

    .faq-answer {
      padding: 20px;
      display: none;
      color: #666;
      line-height: 1.8;
    }

    .footer {
      background: #1e293b;
      color: white;
      padding: 40px 0;
      text-align: center;
    }

    .footer-badges {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 20px;
      flex-wrap: wrap;
      font-size: 20px !important;
    }

    .footer-badges span {
      font-size: 18px;
    }

    .footer-badge {
      background: #e5a34d;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 0.9rem;
    }

    .footer p {
      color: white;
    }

    .footer-section a:hover {
      color: #f05030;
    }

    .accordion {
      max-width: 100%;
      margin: auto;
    }

    .accordion-item {
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-header {
      background: #e7e5e57a;
      padding: 1rem;
      cursor: pointer;
      font-weight: 500;
      font-size: 20px;
      color: #666;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-header:hover {
      background-color: #e7e5e57a;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0px;
    }

    .accordion-content p {
      padding: 19px;
      margin: 0;
      color: #666;
    }

    .icon {
      transition: transform 0.3s ease;

    }

    .accordion-item.active .accordion-content {
      max-height: 100%;
    }

    .accordion-item.active .icon {
      transform: rotate(180deg);
    }

    .iframe-form2 {
      height: 900px;
      width: 100%;
      border: none;
      padding: 0px 0px;
      margin: 20px 0px 30px 0px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .btn-form {
        background: #f05030;
        color: white;
        padding: 15px 12px !important;
        text-decoration: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px lab(#f05030);
      }

      .logo-div img {
        width: 45%;
      }

      .hero-content h1 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 700;
        line-height: 50px;
      }

      .cta-button {
        background: #008a06;
        color: white;
        padding: 18px 40px;
        text-decoration: none;
        border-radius: 50px;
        font-size: 19px;
        font-weight: 600;
        transition: all 0.3s ease;
        /*text-transform: uppercase;*/
        letter-spacing: 1px;
        box-shadow: 0 8px 25px lab(#f05030);
      }

      .footer-badges span {
        font-size: 16px;
      }

      /* .differentiation{
           font-size: 22px !important; 

        } */
      .differentiation-h3 {
        font-size: 22px !important;
      }

      .risk-reversal {
        background: transparent;
        color: white;
        padding: 0px;
      }

      .risk-reversal h3 {
        color: #1e293b;
      }

      .advantage {
        border: 1px solid;
        width: 90%;
        margin: 0px auto;
      }

      .cta-section h2 {
        color: #293e52;
        max-width: 100%;
        margin: 0px auto;
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 50px;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .section-title {
        font-size: 2rem;
        line-height: 50px;
        margin-bottom: 10px;
      }

      .features-grid,
      .testimonials {
        grid-template-columns: 1fr;
      }

      .iframe-custom {
        width: 100%;
        height: 300px;
      }

      .p-class {
        color: #666 !important;
      }

      .white-color {
        color: white !important;
        margin-bottom: 0px !important;
      }

      .iframe-form2 {
        height: 900px;
        width: 100%;
        border: none;
        padding: 0px;
      }

    }

    .padding-remove {
      padding: 50px 0px 50px 0px !important;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in {
      animation: fadeInUp 0.6s ease-out;
    }

    /* Pulse animation for urgency */
    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }

      100% {
        transform: scale(1);
      }
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    .differentiation {
      background: linear-gradient(135deg, #018a06, #e4a352);
      color: white;
      padding: 15px;
      border-radius: 20px;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 40px;
    }

    .video-embed {
      text-align: center;
      margin: 40px 0;
    }

    .video-embed iframe {
      max-width: 100%;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }