

/* About Section */
.about {
  background: #fff;
  padding: 80px 0 40px 0;
}
.about-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}
.about-title h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.1;
  margin-bottom: 0;
}
.about-desc {
  max-width: 700px;
}
.about-desc p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
  font-weight: 400;
}
.about-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.about-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}
.about-icon svg {
  margin-bottom: 12px;
  width: 80px;
  height: 80px;
}
.about-icon-title {
  font-size: 1.15rem;
  color: #222;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .about-title h1 {
    font-size: 2rem;
    text-align: center;
  }
  .about-desc {
    text-align: center;
  }
  .about-icons {
    gap: 30px;
  }
  .about-icon {
    width: 100px;
  }
  .about-icon svg {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 40px 0 20px 0;
  }
  .about-title h1 {
    font-size: 1.2rem;
  }
  .about-icon {
    width: 70px;
  }
  .about-icon svg {
    width: 40px;
    height: 40px;
  }
  .about-icons {
    gap: 16px;
  }
}

/* Gateway Section */
.gateway {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.gateway h2 {
  font-size: 3rem;
  color: #2c5aa0;
  margin-bottom: 10px;
  font-weight: bold;
}

.gateway .highlight {
  color: #e67e22;
}

.gateway .yellow {
  color: #f39c12;
}

.gateway p {
  font-size: 1.5rem;
  color: #666;
  margin-top: 20px;
}

/* Details Section */
.details {
  padding: 100px 0;
  background: #f8f9fa;
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.details-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.find-out-btn {
  background: transparent;
  border: 2px solid #f39c12;
  color: #f39c12;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.find-out-btn:hover {
  background: #f39c12;
  color: white;
}

.details-image {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'><rect fill='%2387ceeb' width='800' height='400'/><rect fill='%23f4d03f' y='400' width='800' height='200'/><circle fill='%23fff' cx='100' cy='100' r='20'/><circle fill='%23fff' cx='200' cy='80' r='15'/><circle fill='%23fff' cx='300' cy='120' r='18'/></svg>");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
