

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





@font-face {
    font-family: "PublicSans-Bold";
    src: url("./fonts/Public_Sans/static/PublicSans-Bold.ttf");
}


@font-face {
    font-family:"Inter_18pt-Regular" ;
    src: url("./fonts/Inter/static/Inter_18pt-Regular.ttf");
}

 @font-face {
      font-family: "ErasDemiITC";
      src: url(../fonts/ErasDemiITC.ttf);
     }



h1,h2,h3{
    font-family: "PublicSans-Bold", sans-serif;
      color: #021440;
      font-size: 3rem;
}

p{
     font-family:"Inter_18pt-Regular" ;
     color:#434e5c;
}
li{
     color:#021440;
}
H2 span{
     font-family: "PublicSans-Bold";
    /* font-size: 3rem; */
    color: #0047bb;
    font-weight: 900;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}



/* Problems Section */
.problems {
  padding: 4rem 0;
  background: #f9fafb;
  
}

.section-title {
  /* font-size: 3rem; */
  font-weight: 800;
  /* text-align: center; */
  margin-bottom: 3rem;
  line-height: 1.2;
      letter-spacing: -0.025em;
  
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.problem-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}


.problem-card p{
    font-size: 1.25rem;
      
}


/* Features Section */
.gst-features {
  padding: 4rem 0;
  background: white;
}

.gst-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gst-feature-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gst-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.gst-feature-card ul {
  list-style: none;
}

.gst-feature-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Advantages Section */
.advantages {
  padding: 4rem 0;
  background: #f9fafb;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.advantage-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.advantage-icon {
  width: 40px;
  height: 40px;
  background: #dcfce7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.advantage-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 21px;
}

.advantage-card p {
  margin-top: 10px;
  font-size: 16px;
  /* color: #6b7280; */
}



/* Security Section */
.security {
  padding: 4rem 0;
  background: #f9fafb;
}

.security .sec{
    text-align: center;
    margin-bottom: 3rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.security-column h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.security-column{
     margin: 0 auto;
}


.security-column ul {
  list-style: none;
  padding-left: 16px;
}

.security-column li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.shield {
  color: #10b981;
}

/* CTA Section */
  .cta-section {
            text-align: center;
            padding: 5rem 1rem;
        }

         
       .cta-main{
        display: flex;
        justify-content: space-between;
        align-items:center ;
        gap: 20px;
       }

        .cta-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .cta-text {
            max-width: 42rem;
            margin: 2rem 0;
            font-size: 1.2rem;
        }
        .cta-button {
            background-color: #0065f2;
            color: white;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            border: none;
            transition: background-color 0.2s ease-in-out;
        }
        .cta-button:hover {
            background-color: #0a3161;
        }


         .cta-rgt{
        background: url("https://cdn.pixabay.com/photo/2016/04/20/08/21/entrepreneur-1340649_1280.jpg");
        background-size: cover;
        background-position: center;
        width: 480px;
        height: 300px;
        background-repeat: no-repeat;
       }

       


@media (max-width: 900px){

   h2{
    font-size: 2.5rem;
   }

}



/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .value-props {
    grid-template-columns: 1fr;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }
}






