
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::after,
*::before{
  font-family: "Poppins", sans-serif;
  list-style: none;
}

body, html {
  margin: 0;
  padding: 0;
  color: #000;
  scroll-behavior: smooth;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px;
}

p {
  font-size: 1.1rem;
  color: #595959;
  margin: 20px 0 0;
}

.layout {
  min-height: 100vh;
}

.container {
  padding: 80px 40px;
  margin: 0 auto;
}

.section {
  width: 100%;
}

.section-lightblue {
  background-color: #F3FAFF;
}

.section-white {
  background-color: #ffffff;
}

.section-lightgrey {
  background-color: #f9f9f9;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo img {
  max-height: 40px;
}

.header-buttons {
  display: flex;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}

.btn-outline {
  width: 120px;
  height: 40px;
  border: 1px solid #d1d4d4;
  border-radius: 48px;
  background: white;
  color: #202124;
  cursor: pointer;
  transition: all 0.2s ease-out
}

.btn-outline:hover{
  border:1px solid #0a598d
}

.btn-primary {
  width: 160px;
  height: 40px;
  font-weight: 600;
  font-size: 13px;
  border-radius: 48px;
  font-family: 'Poppins';
  cursor: pointer;
  margin: auto;
  background-color: #0a598d;
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease-out
}

.btn-primary:hover {
  background-color: #1c74af;
}

.row {
  display: flex;
 
}

.col {
  flex: 1 1 100%;
  text-align: center;
}

/*Pricing Section*/
.pricing-container {
  background: linear-gradient(90deg, #ffe3ee 0%, #dff3ff 100%);
  padding: 80px 40px;
  text-align: center;
}

.pricing-heading {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 36px;
  color: #0a598d;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 980px;
  margin: auto;
  gap: 20px;
}

.pricing-col {
  max-width: 220px;
  display: flex;
  justify-content: center;
 
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  width: 208px;
  height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition:all 0.2s ease-in;
}

.pricing-card:hover {
  border: 1px solid #003366;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.1);
}

.card-header {
  display: flex;
  justify-content: center;
  gap:20px;
  align-items: center;
}

.card-header p{
  margin: 0;
  color:#202124;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.tag {
  background: #C5FFE5;
  color: #0a598d;
  border: none;
  border-radius: 34px;
  font-size: 12px;
  padding: 2px 8px;
}

.subtitle {
  font-weight: 700;
  color: #EF5DA8;
  font-size: 20px;
  margin: 10px 0;
}

.price {
  color: #0a598d;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  margin: 10px 0;
}

.info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  margin-bottom: 16px;
}

.info p{
  margin: 0;
  line-height:20px;
  font-size: 12px;
  font-weight: 400;
  color:#202124;
  text-align: center;
}

.check-icon {
  position: absolute;
  width: 16px;
  left:20px
}

.btn-regular {
  background: #F1F7FF;
  color: #0a598d;
  border: none;
  border-radius: 48px;
  height: 40px !important;
  width: 160px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease-out
}

.btn-regular:hover{
   background-color: #0a598d;
  color: white;
}

/*How to Use Page*/
.how-to-use-container{
  max-width: 1280px;
  display: flex;
  gap:10px;
  margin: auto;
}

.how-to-use-title{
  text-align: center;
  margin: 96px 0 32px 0;
}

.contact-page{
  max-width: 1280px;
  padding: 88px 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.contact-page li{
  margin-bottom: 16px;
}

/*How To and Contact Page Responsive*/
.how-to-use-container img,
.contact-page img {
  max-width: 100%; /* Prevent overflow */
  width: 100%; /* Scale to parent container’s width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove any inline spacing issues */
}

.contact-item{
  display:flex;
  align-items:center;
  gap:10px
}

.contact-info{
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #727272;
};

.contact-label {
  font-size:13px;
  color: #727272;
}


@media (min-width: 768px) {
  .text-col {
    flex: 1 1 60%;
    text-align: left;
  }

  .image-col {
    flex: 1 1 40%;
  }
}

.image-col img {
  max-width: 100%;
  height: auto;
}

.highlight {
  color: #0a598d;
}

.legal-section {
  line-height: 1.6;
}

.legal-section p {
  font-size: 14px;
    color:#000;
}

.legal-section a {
  text-decoration: none;
  font-size: 13px;
  color:#595959;

}