/* Header Section */
.home-header {
  display: flex;
  flex-wrap: wrap; /* Ensure it adapts for smaller screens */
  justify-content: center;
  align-items: center;
  background-color: #b6def6;
  padding: 20px;
}/* General Styles */


.home-header-content {
  padding: 20px;
  flex: 1 1 300px; /* Allow flexible width with a minimum size */
  max-width: 600px; /* Prevent it from stretching too much */
}

.home-header-content h1 {
  font-family: "CustomFont-Bold";
  font-size: 2.5rem;
  color: #203864;
}

.content-paragraph p{
  font-family: "CustomFont-Regular";
  color: #4b7fa0;
  margin: 5px 0;
}

/* About Us Section */
.about-us {
  max-width: 35%;
  flex: 1 1 300px; /* Allow it to shrink for smaller screens */
}

/* Graphic Section */
.home-header-graphic img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* Products Section */
.home-products {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px; /* Add padding for smaller screens */
}

/* Info Section */
.service-support-header-info {
  text-align: justify;
  margin: 30px auto;
  padding: 20px;
  max-width: 1200px;
}

.service-support-header-info p {
  font-family: "CustomFont-Regular";
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #4a4a4a;
}

.service-support-header-contact h2 {
  font-family: "CustomFont-Semi-Bold";
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 20px 0 10px;
}

.service-support-header-contact p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .home-header {
    flex-direction: column; /* Stack elements on smaller screens */
  }

  .about-us {
    max-width: 80%; /* Increase width for readability */
  }

  .home-products {
    max-width: 100%;
    padding: 0 10px;
  }

  .service-support-header-info {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .home-header-content h1 {
    font-size: 2rem; /* Smaller heading size for narrow screens */
  }

  .about-us {
    max-width: 90%; /* Expand for smaller devices */
  }

  .service-support-header-contact h2 {
    font-size: 1.5rem;
  }

  .service-support-header-contact p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .home-header-content h1 {
    font-size: 1.8rem; /* Further reduce for very small screens */
  }

  .service-support-header-info p {
    font-size: 1rem; /* Reduce font size for readability */
  }

  .service-support-header-contact h2 {
    font-size: 1.2rem;
  }
}
