.about-intro-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.about-intro-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* Matches the home page layout structure */
  gap: 4rem;
  align-items: center;
}

.about-intro-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.about-intro-headline {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--fg);
}

.about-intro-headline .light {
  font-weight: 300;
  color: var(--fg-2);
}

.about-text-wrapper {
  margin-top: 0;
  width: 100%;
}

.about-text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--fg-2);
  margin-bottom: 1.25rem;
}

.about-text-wrapper p:last-child {
  margin-bottom: 0;
}

/* Tilted Image Wrapper for About Page */
.about-intro-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px; /* Establishes depth of field for 3D tilt */
  width: 100%;
}

.about-intro-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border: 1px solid rgba(165, 243, 161, 0.12); /* Subtle glow border */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(165, 243, 161, 0.04);
  transform: rotate(3deg) rotateY(-6deg) rotateX(3deg); /* Opposite tilt direction to index.html for asymmetry */
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.6s ease, 
              box-shadow 0.6s ease;
  overflow: hidden;
  background: var(--bg-2);
}

.about-intro-image-wrapper:hover {
  transform: rotate(0deg) translate3d(0, -8px, 15px); /* Interactive lift response */
  border-color: rgba(165, 243, 161, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 
              0 0 50px rgba(165, 243, 161, 0.08);
}

.about-intro-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 19px; /* "Sticked" border radius alignment inside border bounds */
  opacity: 0.85;
  transition: opacity 0.6s ease;
}

.about-intro-image-wrapper:hover .about-intro-img {
  opacity: 1;
}

.about-intro-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 50%, rgba(10, 10, 10, 0.4) 100%);
  pointer-events: none;
  border-radius: 19px;
}

/* Values Section Styling remaining clean */
.about-values-section {
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8rem 0;
}

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

.about-value-card {
  padding: 2rem;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.about-value-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.about-value-icon-svg {
  width: 28px;
  height: 28px;
  display: block;
}

.about-value-card h3 {
  margin-bottom: 0.75rem;
}

.about-intro-section .section-label {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.about-values-section .section-label,
.about-values-section .section-title {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* Responsive Viewports */
@media (max-width: 900px) {
  .about-intro-section {
    padding: 6rem 0;
  }
  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-intro-text-col {
    align-items: center;
    text-align: center;
  }
  .about-intro-section .section-label {
    text-align: center;
    margin: 0 auto;
  }
  .about-intro-image-col {
    perspective: none;
  }
  .about-intro-image-wrapper {
    transform: rotate(1.5deg); /* Subtle tilt remains on tablet/mobile but safer */
    max-width: 400px;
  }
}