* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
} 

.memorial-page {
  max-width: 1500px;  /* 1200px */
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section  #1458E3  #2d5a4a --- #1a3d32   #15305c  #041736 */
.hero-section {
  background: linear-gradient(135deg, #15305c 0%, #041736 100%);
  color: white;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;    /* 1000px */
  margin: 0 auto;
  gap: 80px;  /* 60px */
}

.hero-text {
  flex: 1;
  z-index: 2;
}

.memorial-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.memorial-dates {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-style: italic;
}

.memorial-description {
  font-size: 1.3rem;
  line-height: 1.5;
  opacity: 0.95;
}

.hero-image {
  flex: 0 0 300px;
  position: relative;
}

.founder-portrait-hero {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
  filter: grayscale(20%);
}

/* Content Section */
.content-section {
  padding: 80px 40px;
  background-color: #fafafa;
}

.content-container {
  max-width: 1250px;  /* 1000px */
  margin: 0 auto;
}

/* Leader Section */
.leader-section {
  display: flex;
  gap: 70px;   /* 50px */
  margin-bottom: 80px;
  align-items: flex-start;
}

.leader-image {
  flex: 0 0 280px;
}

.founder-portrait {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  filter: grayscale(100%);
}

.leader-content {
  flex: 1;
}

.section-title {
  font-size: 2.5rem;
  color: #1458E3;
  margin-bottom: 30px;
  font-weight: bold;
}

.leader-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.7;
}

.leader-philosophy {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #444;
  line-height: 1.7;
}

.legacy-quote {
  background-color: white;
  padding: 30px;
  border-left: 5px solid #15305c ;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legacy-quote p {
  font-size: 1.2rem;
  color: #15305c ;
  margin-bottom: 10px;
  font-style: italic;
}

.legacy-quote p:last-child {
  margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
  margin-bottom: 80px;
}

.achievements-list {
  list-style: none;
  padding: 0;
}

.achievements-list li {
  background-color: white;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 50px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.achievements-list li::before {
  content: "•";
  color: #15305c;
  font-size: 1.5rem;
  position: absolute;
  left: 20px;
  top: 18px;
}

/* Board Message Section */
.board-message-section {
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.board-message {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;   /* 40px */
  }
  
  .hero-image {
    flex: 0 0 auto;
  }
  
  .memorial-title {
    font-size: 2.5rem;
  }
  
  .leader-section {
    flex-direction: column;
    gap: 50px;  /* 60px */
  }
  
  .leader-image {
    flex: 0 0 auto;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section,
  .content-section,
  .board-message-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .memorial-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .legacy-quote,
  .board-message-section {
    padding: 25px;
  }
  
  .achievements-list li {
    padding: 15px 20px;
    padding-left: 40px;
  }
}
