.about-page-header {
  height: 50vh !important;
  min-height: 20em !important;
}
/* Header */
.about-header {
  background-color: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.about/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Font */
body {
  color: #333;
  line-height: 1.6;
}

/* Header */
.about-header {
  background-color: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.about-header h1 {
  font-size: 3rem;
  color: #333;
}

/* About Section with Transparent Logo Background */
.about-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  z-index: 1; /* Make sure content is above background */
  min-height: 100vh; /* Full viewport height */
}

/* Transparent logo background */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/Logo/TheHungryBrushLogonobackground.png"); /* Replace with the path to your logo */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1; /* Adjust opacity to make it subtle */
  z-index: -1; /* Make sure background is behind content */
}

/* Flexbox layout for larger screens */
.about-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  z-index: 2;
}

/* Image styling */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Text content */
.about-text {
  max-width: 600px;
  z-index: 2;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #555;
}

/* Footer */
.about-footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
  border-top: 2px solid #ddd;
}

.about-footer p {
  font-size: 1rem;
  color: #555;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-header h1 {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}
