/* Reset default spacing and box model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f8f8;
  line-height: 1.6;
  font-weight: 505;
}
/* Main Page Layout */
.about-page {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  
}



/* Hero Section */
.about-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem; 
  background-color: #f9f9f9; 
  border: 1px solid #ddd; 
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
  max-width: 900px; 
  margin: auto; 
}


.about-hero h1 {
  font-size: 2rem;
  color: #03944c;
  margin-bottom: 1rem;
  font-weight: 505;
  text-decoration: underline;
}

.about-hero p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  text-align: left;
}

/* Mission Section */
.about-mission {
  background-color: #f9f9f9; 
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
  margin-top: 3rem;
}

.about-mission h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
}

.about-mission p {
  font-size: 1rem;
  color: #231818;
  line-height: 1.8;
  font-weight: 505;
  text-align: center;
}

/* Focus Areas Section */
.about-focus {
  padding: 1.8rem;
  margin-bottom: 3rem;
  background-color: #f9f9f9; 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
}

.about-focus h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.about-focus ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  list-style: none;
}

.about-focus li {
  background-color: #020803;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: left;
  color: #fff;
  justify-content: space-between;
  font-weight: 505;
  font-size: 1rem;
}



/* Owner Section */
.about-owner {
  background-color: #fff; 
  padding: 4rem 2rem; 
  margin-bottom: 3rem;
  text-align: center;
  border: 1px solid #ddd; 
  border-radius: 10px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  max-width: 1000px; 
  margin: auto; 
}

.about-owner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  text-decoration: underline;
}


/* Owner layout - mobile default (stacked) */
.owner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.owner-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
}

/* Owner details */
.owner-details {
  max-width: 500px;
}

.owner-details h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #333;
}

.owner-details h4 {
  font-size: 1.3rem;
  color: #333;
}

.owner-details p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;;
}

/* Larger screen adjustment - side by side */
@media (min-width: 768px) {
  .owner-info {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  .owner-photo {
    max-width: 30rem;
  }

  .owner-details {
    flex: 1;
  }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .owner-photo {
    max-width: 180px;
  }

  .about-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-hero p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
  }

  .about-focus ul {
    flex-direction: column;
    align-items: center;
}
.about-focus li{
  padding: 0.5rem;
}
.about-owner h2,
.about-mission h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-mission p {
  font-size: 1rem;
  
}

}