.clutchServiceNav {
  background-color: var(--secondary-color);
}

.ClutchServices {
  padding: 50px 60px;
  font-size: large;
}

.ClutchSubservice {
  color: darkred;
}

.ClutchSub1,
.clutchSub4b {
  font-size: large;
}

.image img {
  padding: 20px;
  border-radius: 5px;
  width: 60%;
  height: 300px;
  transition: transform 0.4s ease;
}

.image img:hover {
  transform: scale(1.2);
}

.sub3 {
  font-size: large;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
  .ClutchServices h1 {
    font-size: 2rem;
  }

  .ClutchServices h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 450px) {
  .ClutchServices {
    padding: 1rem;
    font-size: 1rem;
  }

  .ClutchServices h1 {
    font-size: 1.8rem;
  }

  .ClutchServices > :first-child {
    margin-bottom: 1rem;
  }

  .ClutchServices h2 {
    font-size: 1.1rem;
  }

  .sub h1,
  .sub2 h1 {
    font-size: 1.2rem;
  }

  .ClutchServices p {
    text-align: justify;
    font-size: 1rem;
  }

  .image img {
    padding: 1rem 0 2rem 0;
    border-radius: 0;
    width: 100%;
    height: auto;
  }

  .image img:hover {
    transform: none;
  }
}