/* Hero Section for API Testing Tools */
.postman-hero {
  background: url('images/API.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensuring hero-content is centered */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Tools Section */
.tool-section {
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  gap: 40px;
  background-color: #f9f9f9;
}

.tool {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-left: 5px solid #0066cc;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.tool h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.tool p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .postman-hero {
    background-position: top center;
    background-size: contain;
    height: auto;
    padding: 150px 15px 50px; /* Top padding pushes image visible */
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
.tool-section {
    padding-top: 20px; /* Remove gap above section */
  }

  .tool {
    padding: 20px;
  }

  .tool h2 {
    font-size: 1.5rem;
  }
}
