.about-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.about-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1),
    rgba(255, 107, 0, 0.05)
  );
  border-radius: 15px;
}

.about-hero h1 {
  color: #ff6b00;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-hero h1 span {
  color: #ff6b00;
  filter: hue-rotate(0deg) saturate(100%) brightness(100%);
}

.about-hero .tagline {
  font-size: 1.2rem;
  color: var(--text-color);
  font-style: italic;
}

.about-section {
  margin-bottom: 4rem;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  color: #ff6b00;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.about-section h2 span {
  color: #ff6b00;
  filter: hue-rotate(0deg) saturate(100%) brightness(100%);
}

.about-section p {
  text-align: justify;
  margin-bottom: 1rem;
}

.name-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.name-part {
  background: rgba(255, 107, 0, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.name-part:hover {
  transform: translateY(-5px);
}

.name-part h3 {
  color: #ff6b00;
  margin-bottom: 1rem;
}

.name-part p {
  text-align: justify;
}

.name-part ul {
  list-style-type: none;
  padding-left: 0;
}

.name-part ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.name-part ul li::before {
  content: "•";
  color: #ff6b00;
  position: absolute;
  left: 0;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.division-card {
  background: rgba(255, 107, 0, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.division-card:hover {
  transform: translateY(-5px);
}

.division-card h3 {
  color: #ff6b00;
  margin-bottom: 0.5rem;
}

.division-card p {
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-align: justify;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.mission,
.vision {
  background: rgba(255, 107, 0, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

.mission h3,
.vision h3 {
  color: #ff6b00;
  margin-bottom: 1rem;
}

.mission p,
.vision p {
  text-align: justify;
}

.motto {
  text-align: center;
  margin-top: 2rem;
}

.motto h3 {
  color: #ff6b00;
  margin-bottom: 0.5rem;
}

.motto p {
  text-align: justify;
}

/* Specific emoji styles */
.emoji-orange {
  color: #ff6b00;
  filter: hue-rotate(0deg) saturate(100%) brightness(100%);
  display: inline-block;
}

/* Add styles for emoji links */
.motto a {
  color: #ff6b00 !important;
  text-decoration: none;
}

.motto a:hover {
  text-decoration: underline;
}

.motto a span {
  color: #ff6b00;
  filter: hue-rotate(0deg) saturate(100%) brightness(100%);
}

.brand-consistency {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.brand-point {
  background: rgba(255, 107, 0, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

.brand-point h3 {
  color: #ff6b00;
  margin-bottom: 1rem;
}

.brand-point ul {
  list-style-type: none;
  padding-left: 0;
}

.brand-point ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.brand-point ul li::before {
  content: "•";
  color: #ff6b00;
  position: absolute;
  left: 0;
}

.strategic-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.strategy-card {
  background: rgba(255, 107, 0, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
}

.strategy-card h3 {
  color: #ff6b00;
  margin-bottom: 1rem;
}

.strategy-card p {
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-align: justify;
}

/* SWOT Analysis Styles */
.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1),
    rgba(255, 107, 0, 0.05)
  );
  padding: 2rem;
  border-radius: 15px;
}

.swot-card {
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.swot-card:hover {
  transform: translateY(-5px);
}

.swot-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid;
  color: #ffffff;
}

.strengths h3 {
  border-color: #e24a4a;
  color: #e24a4a;
}

.weaknesses h3 {
  border-color: #e2844a;
  color: #e2844a;
}

.opportunities h3 {
  border-color: #4ae28f;
  color: #4ae28f;
}

.threats h3 {
  border-color: #e24a4a;
  color: #e24a4a;
}

.swot-content h4 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
  color: #ff6b00;
  font-weight: 600;
}

.swot-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-main {
    padding: 1rem;
  }

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

  .about-section {
    padding: 1.5rem;
  }

  .name-breakdown,
  .divisions-grid,
  .mission-vision,
  .brand-consistency,
  .strategic-overview,
  .swot-grid {
    grid-template-columns: 1fr;
  }
}
