


.pt-section {
  padding: 80px 20px;
  /* background: #f9f9f9; */
  text-align: center;
	font-family: serif !important;
}

.container {
  max-width: 1200px;
  margin: auto;
		
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
	font-family: serif !important;
}

.desc {
  max-width: 980px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.7;
	font-family: serif !important;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
	/* width: 500px; */
}

.benefit-card {
  background: #a98dec;
  color: #000;
  padding: 35px;
	width: 300px;
  border-radius: 20px;
  text-align: center;
	font-family: serif !important;
}

.benefit-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
	font-weight: bolder;
	color: #000;
	font-family: serif !important;
}

.benefit-card p {
  font-size: 16px;
  color: #222;
}

.types-section {
  padding: 10px 20px;
  /* background: #f3f3f3; */
  text-align: center;
		font-family: serif !important;
}

.types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.type-box {
  background: #e7e6e4;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
	font-size: 15px;
}

.type-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
	font-family: serif !important;
}

.type-box p {
  color: #555;
  line-height: 1.6;
}

.highlight-box {
  margin-top: 40px;
  padding: 20px;
  border: 2px solid #999;
  border-radius: 15px;
  font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
}

.highlight-box span {
  color: #6a5acd;
  font-weight: bold;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 28px;
  }
}