.header-banner {
  position: relative;
  width: 100%;
  min-height: 80vh; /* adjust depending on design */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; /* default text color */
  text-align: center;
}

/* Optional overlay for readability */
.header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /*dark overlay*/
  z-index: 1;
}

.header-banner .header-banner-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.header-banner .header-banner-text h1 {
  font-size: 3rem; /* scale responsibly with media queries */
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .header-banner {
    min-height: 25vh;
  }
  .header-banner .header-banner-text h1 {
    font-size: 2rem;
  }
.about-container h1,.about-container h2,
.about-container h3{
  font-size:25px;
  line-height:32px;
}
}


.about-container {
    max-width: 1000px;      
    margin: 40px auto;               
    line-height: 1.7;
    color: #000;
    padding: 40px 20px;
    background: #fafafa;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
   
}


.about-container h1,
.about-container h2,
.about-container h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #6b3e26;
    border-left:4px solid #6b3e26;
    padding-left:15px;
}


.about-container p {
    margin-bottom: 16px;
}


.about-container ul,
.about-container ol {
    margin: 12px 0 16px 25px;
}


.about-container a {
    color:#6b3e26;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-container a:hover {
    text-decoration: underline;
}


