:root {
  /* Add any about-page specific variables here if needed */
}

/* --- Hero Section (Simple Title Section) --- */
.about-hero {
  padding: 120px 0 60px 0; /* Adjust padding */
  background-color: var(--primary-accent); /* Use accent color */
  color: var(--light-bg); /* White text */
  text-align: center;
  margin-top: var(--header-height-scrolled); /* Space for fixed header */
}

html[data-theme="dark"] .about-hero {
  background-color: var(--dark-primary-accent);
  color: var(--dark-text);
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive title */
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* --- Tentang Agathos Section --- */
.tentang-section {
  /* Uses global .section styles */
}

.tentang-grid {
  display: grid;
  gap: 40px;
  align-items: start; /* Align items to the top */
}

@media (min-width: 768px) {
  .tentang-grid {
      grid-template-columns: 1fr 1fr; /* Two equal columns */
      gap: 60px;
  }
}

.tentang-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary-color);
}

.tentang-text p:not(:last-child) {
  margin-bottom: 1.5em;
}

.tentang-text--highlight {
  border-left: 4px solid var(--primary-accent);
  padding-left: 25px;
  margin-top: 1em; /* Space from previous paragraph if needed */
}

html[data-theme="dark"] .tentang-text--highlight {
   border-left-color: var(--dark-primary-accent);
}

/* --- Visi Misi Section --- */
.visi-misi-section {
  /* Uses global .section styles & .section--alt-bg */
  position: relative; /* For pseudo-elements */
  overflow: hidden;
}

.visi-misi-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px; /* Space between Visi and Misi blocks */
}

.visi-misi-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .visi-misi-block {
      grid-template-columns: 1fr 1fr;
      gap: 80px;
  }
  /* Alternate layout */
  .visi-misi-block--reverse .visi-misi-image-wrapper {
      order: -1; /* Move image to the left */
  }
}

.visi-misi-content {
  /* Styles for text content */
}

.visi-misi-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary-accent);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.visi-misi-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}
html[data-theme="dark"] .visi-misi-title::after {
   background-color: var(--dark-secondary-accent);
}

.visi-misi-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary-color);
}

.misi-list {
  list-style: none;
  padding-left: 0; /* Remove default padding */
  margin-top: 1em;
}

.misi-list li {
  margin-bottom: 1em;
  padding-left: 25px; /* Space for icon */
  position: relative;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

.misi-list li::before {
  content: '\f00c'; /* FontAwesome check icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-accent);
  position: absolute;
  left: 0;
  top: 2px; /* Adjust vertical alignment */
  font-size: 0.9em;
}
html[data-theme="dark"] .misi-list li::before {
   color: var(--dark-primary-accent);
}

.visi-misi-image-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  position: relative; /* For potential overlays */
}

.visi-misi-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.visi-misi-image-wrapper:hover .visi-misi-image {
  transform: scale(1.05);
}

/* --- Founders Section --- */
.founders-section {
  /* Uses global .section styles */
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.founder-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px var(--shadow-hover-color);
}

.founder-card:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .founder-card {
      grid-template-columns: 150px 1fr; /* Fixed image width, text takes rest */
      gap: 40px;
      padding: 40px;
  }
  /* Alternate image position */
  .founder-card--reverse .founder-image-wrapper {
      order: 1; /* Move image to the right */
  }
}

.founder-image-wrapper {
  width: 150px; /* Match grid column size */
  height: 200px; /* Maintain aspect ratio */
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 0 auto; /* Center on mobile */
  box-shadow: 0 4px 10px var(--shadow-color);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Adjust as needed */
}

.founder-info {
  /* Styles for founder text content */
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 10px;
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.8;
}

/* --- Pelayanan Section --- */
.pelayanan-section {
  /* Uses global .section styles & .section--alt-bg */
  text-align: center;
}

.pelayanan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.pelayanan-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px; /* Pill shape */
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary-color);
  transition: all var(--transition-speed) ease;
  background-color: var(--body-bg); /* Match background */
}
.pelayanan-link:hover {
  background-color: var(--primary-accent);
  color: #ffffff;
  border-color: var(--primary-accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px var(--shadow-hover-color);
}

html[data-theme="dark"] .pelayanan-link {
   background-color: var(--dark-bg);
   border-color: var(--dark-border);
   color: var(--dark-text-secondary);
}
html[data-theme="dark"] .pelayanan-link:hover {
  background-color: var(--dark-primary-accent);
  border-color: var(--dark-primary-accent);
  color: var(--dark-text);
}

.property-types-list {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-secondary-color);
}

.property-types-list a {
  color: var(--primary-accent);
  font-weight: 500;
  margin: 0 5px;
  transition: color var(--transition-speed) ease;
  border-bottom: 1px dotted var(--primary-accent);
}
.property-types-list a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}
html[data-theme="dark"] .property-types-list a {
  color: var(--dark-primary-accent);
  border-bottom-color: var(--dark-primary-accent);
}
html[data-theme="dark"] .property-types-list a:hover {
  color: var(--dark-secondary-accent);
  border-bottom-color: var(--dark-secondary-accent);
}

.bantuan-hukum {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-accent);
}
html[data-theme="dark"] .bantuan-hukum {
   color: var(--dark-primary-accent);
}

/* --- Tim Kami Section --- */
.tim-kami-section {
  /* Uses global .section styles */
}

.tim-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary-color);
}

.tim-intro-text strong {
  font-weight: 600;
  color: var(--text-color);
}
html[data-theme="dark"] .tim-intro-text strong {
  color: var(--dark-text);
}

.tim-feature-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden; /* Clip image corners */
  box-shadow: 0 5px 20px var(--shadow-color);
}

.tim-feature-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .tim-feature-block {
      grid-template-columns: 1fr 1fr;
      gap: 0; /* Remove gap, image touches text area */
  }
  .tim-feature-block--reverse .tim-feature-image-wrapper {
      order: 1; /* Image on right */
  }
   .tim-feature-block--reverse .tim-feature-content {
      order: 0; /* Text on left */
  }
}

.tim-feature-image-wrapper {
  height: 350px; /* Fixed height */
  overflow: hidden;
}

@media (min-width: 992px) {
   .tim-feature-image-wrapper {
      height: 450px;
  }
}

.tim-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth), filter 0.4s ease;
  filter: saturate(1); /* Default saturation */
}
.tim-feature-block:hover .tim-feature-image {
  transform: scale(1.03);
  filter: saturate(1.1); /* Slightly more vibrant on hover */
}


.tim-feature-content {
  padding: 40px;
}

.tim-feature-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--primary-accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.tim-feature-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.8;
}

/* --- Animations --- */
/* Re-use .animate-on-scroll logic from home.css/home.js */
/* Add specific animation needs here if necessary */