/* Logo Styling */
header img {
  background: rgba(0, 43, 92, 0.8);
  padding: 10px;
}



/* Custom HTML Block Styling */

.u-custom-html {

/* Heading Styles */
h2 {
  font-size: 32px;
  color: #005bb5;
  text-align: center;
  margin-bottom: 1rem;
}

h3 {
  font-size: 20px;
  color: #0073e6;
  margin-bottom: 0.5rem;
}

/* Paragraph and List Styles */
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul {
  list-style-type: circle;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

ul li {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

/* Video Styling */
article video {
  display: block;
  max-width: 60%;
  height: auto;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
article img {
  display: block;
  max-width: 60%;
  height: auto;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Article Box Styling */
article {
  background: #f4f4f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

/* Container Styling */
.engineering-services {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p, ul li {
    font-size: 16px;
  }

  article, video img {
    width: 60%;
  }
}

}