* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
}

body {
  background-color: white;
  color: #222;
  line-height: 1.5;
}

.main-header {
  background-color: white;
  padding: 40px 20px 0px;
  text-align: center;
  max-width: 1100px;
}

.header-inner {
  text-align: center;
  padding: 10px 0 40px;
}

.sub-header {
  display: flex;
  justify-content: space-evenly;
}

.side-logo {
  height: 100px;
}

.header-text h1 {
  color: #b81818;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.reg-number {
  color: #666;
  letter-spacing: 1px;
}

.badge {
  background: #b81818;
  color: white;
  padding: 4px 15px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9rem;
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.quote-area {
  margin-bottom: 40px;
  padding: 20px;
  border-left: 4px solid #b81818;
  background: #fffafa;
  border-radius: 0 15px 15px 0;
}

.quote-area blockquote {
  font-style: italic;
  font-size: 1.15rem;
  color: #444;
}

.quote-area cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #b81818;
  font-style: normal;
}

.intro-text {
  margin-bottom: 60px;
  font-size: 1.1rem;
  text-align: justify;
}

.mv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background-color: #f4f7f6;
  padding: 25px 10px 10px 25px;
  border-radius: 10px;
}

.mv-box h3 {
  color: #b81818;
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-box ul {
  list-style: none;
}

.mv-box ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.mv-box ul li::before {
  content: "•";
  color: #b81818;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.section-title {
  color: #b81818;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}

table th {
  text-align: left;
  padding: 15px;
  border-bottom: 2px solid #b81818;
  color: #b81818;
}

table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

table tr:hover {
  background-color: #f4f7f6;
}

.activities-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.act-card {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
}

.act-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.act-card i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #b81818;
}

.impact-notes {
  background: #f1f1f1;
  padding: 30px;
  border-radius: 8px;
}

.note-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}

.note-item i {
  color: #b81818;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
  }

  .side-logo {
    display: none;
  }

  .mv-container {
    grid-template-columns: 1fr;
  }
}
