html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

.about-hero {
  background: #1a1a2e;
  padding: 8rem 6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  max-width: 100%;
  margin: 0 0 0 0;
  min-height: 45vh;
}

.about-hero-left h1 {
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  margin-top: 4rem; 
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Base Styles */
.about-section {
  padding: 5rem 0;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #1a1a2e;
  margin-top: 1.5rem;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 0;
}

.section-title-light{
  color: floralwhite;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  position: relative;
  text-align: center; 
}

/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
  background: #e8e8e883;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.who-we-are-left {
  position: sticky;
  top: 2rem;
}

/* ===== STRENGTHS SECTION ===== */
.strengths-section {
  background: #1a1a2e;
}

.strengths-section .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
}

.strength-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a2e;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}

.strength-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #323235;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  padding-right: 4rem;
}

.strength-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 1rem;
}

.strength-card p:last-child {
  margin-bottom: 0;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: #ffffff;
}

.experience-section .container {
  max-width: 900px;
}

/* ===== PRINCIPLES SECTION ===== */
.principles-section {
  background: #1a1a2e;
}

.principles-intro {
  font-size: 1.5rem;
  color: #cccccc;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.principle-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.principle-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.principle-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.principle-value {
  font-size: 1rem;
  color: #999999;
  font-weight: 300;
}

.principles-footer {
  font-size: 1rem;
  color: #cccccc;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== RESPONSIVE DESIGN ===== */

/* 5. LARGE SCREENS (1921px+) */
@media (min-width: 1921px) {
  .about-hero {
    padding: 10rem 8rem 3rem;
    gap: 5rem;
    min-height: 50vh;
  }

  .about-hero-left h1 {
    font-size: 6rem;
    margin-top: 5rem;
  }

  .container {
    max-width: 1400px;
    padding: 0 3rem;
  }

  .about-section {
    padding: 6rem 0;
  }

  .section-title,
  .section-title-light {
    font-size: 3rem;
  }

  .section-text {
    font-size: 1.2rem;
  }

  .who-we-are-grid {
    gap: 5rem;
  }

  .strength-card {
    padding: 4rem;
  }

  .card-number {
    font-size: 3.5rem;
    top: 2rem;
    right: 3rem;
  }

  .strength-card h3 {
    font-size: 1.8rem;
    padding-right: 5rem;
  }

  .strength-card p {
    font-size: 1.1rem;
  }

  .principles-intro {
    font-size: 1.8rem;
  }

  .principles-grid {
    gap: 3rem;
    max-width: 1000px;
  }

  .principle-item {
    padding: 3rem 2.5rem;
  }

  .principle-label {
    font-size: 1.8rem;
  }

  .principle-value {
    font-size: 1.1rem;
  }

  .principles-footer {
    font-size: 1.1rem;
    max-width: 900px;
  }
}

/* 2. STANDARD DESKTOP (1367px - 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
  .about-hero {
    padding: 8rem 6rem 2rem;
    gap: 4rem;
  }

  .about-hero-left h1 {
    font-size: 5rem;
  }

  .container {
    max-width: 1300px;
  }

  .section-title,
  .section-title-light {
    font-size: 2.5rem;
  }

  .strength-card {
    padding: 3rem;
  }

  .principles-grid {
    max-width: 900px;
  }
}

/* 1. LAPTOP / HALF SCREEN (1025px - 1366px) - FIXED */
@media (min-width: 1025px) and (max-width: 1366px) {
  .about-hero {
    padding: 7rem 5rem 2rem;
    gap: 3.5rem;
  }

  .about-hero-left h1 {
    font-size: 4.5rem;
    margin-top: 3.5rem;
  }

  .container {
    max-width: 1100px;
    padding: 0 2rem;
  }

  .about-section {
    padding: 4.5rem 0;
  }

  .section-title,
  .section-title-light {
    font-size: 2.3rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .who-we-are-grid {
    gap: 3.5rem;
  }

  .strength-card {
    padding: 2.8rem;
  }

  .card-number {
    font-size: 2.8rem;
  }

  .strength-card h3 {
    font-size: 1.4rem;
    padding-right: 3.5rem;
  }

  .principles-intro {
    font-size: 1.4rem;
  }

  .principles-grid {
    gap: 2.3rem;
    max-width: 750px;
  }

  .principle-item {
    padding: 2.3rem 1.8rem;
  }

  .principle-label {
    font-size: 1.5rem;
  }
}

/* 3. TABLET (769px - 900px) */
@media (min-width: 769px) and (max-width: 900px) {
  .about-hero {
    padding: 6rem 4rem 2rem;
    flex-direction: column;
    gap: 2.5rem;
    min-height: 40vh;
  }

  .about-hero-left h1 {
    font-size: 3.5rem;
    margin-top: 2rem;
  }

  .about-hero-right {
    max-width: 100%;
  }

  .container {
    padding: 0 2rem;
  }

  .about-section {
    padding: 4rem 0;
  }

  .section-title,
  .section-title-light {
    font-size: 2.2rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .who-we-are-left {
    position: relative;
    top: 0;
  }

  .strength-card {
    padding: 2.5rem;
  }

  .card-number {
    font-size: 2.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .strength-card h3 {
    font-size: 1.3rem;
    padding-right: 3rem;
  }

  .principles-intro {
    font-size: 1.3rem;
  }

  .principles-grid {
    gap: 2rem;
    max-width: 100%;
  }

  .principle-item {
    padding: 2rem 1.5rem;
  }

  .principle-label {
    font-size: 1.5rem;
  }
}

/* 4. MOBILE LAYOUT (< 768px) */
@media (max-width: 768px) {
  .about-hero {
    padding: 5.5rem 2rem 2rem;
    flex-direction: column;
    gap: 2rem;
    min-height: 35vh;
  }

  .about-hero-left h1 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
  }

  .about-hero-right {
    max-width: 100%;
  }

  .container {
    padding: 0 1.5rem;
  }

  .about-section {
    padding: 3.5rem 0;
  }

  .section-title,
  .section-title-light {
    font-size: 1.9rem;
  }

  .section-title::after {
    width: 40px;
    height: 2.5px;
    margin-top: 1.2rem;
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .who-we-are-left {
    position: relative;
    top: 0;
  }

  .strength-card {
    padding: 2.2rem;
  }

  .card-number {
    font-size: 2.2rem;
    top: 1.2rem;
    right: 1.2rem;
  }

  .strength-card h3 {
    font-size: 1.25rem;
    padding-right: 2.8rem;
    margin-bottom: 1.2rem;
  }

  .strength-card p {
    font-size: 0.95rem;
  }

  .principles-intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .principle-item {
    padding: 2rem 1.5rem;
  }

  .principle-label {
    font-size: 1.4rem;
  }

  .principle-value {
    font-size: 0.95rem;
  }

  .principles-footer {
    font-size: 0.95rem;
  }
}

/* 4.1 SMALL PHONES (< 480px) */
@media (max-width: 480px) {
  .about-hero {
    padding: 5rem 1.5rem 1.5rem;
    gap: 1.5rem;
    min-height: 30vh;
  }

  .about-hero-left h1 {
    font-size: 2rem;
    margin-top: 1rem;
    letter-spacing: 0.01em;
  }

  .container {
    padding: 0 1.2rem;
  }

  .about-section {
    padding: 3rem 0;
  }

  .section-title,
  .section-title-light {
    font-size: 1.6rem;
  }

  .section-title::after {
    width: 35px;
    height: 2px;
    margin-top: 1rem;
  }

  .section-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .who-we-are-grid {
    gap: 1.5rem;
  }

  .strength-card {
    padding: 1.8rem;
    border-radius: 6px;
  }

  .card-number {
    font-size: 1.8rem;
    top: 1rem;
    right: 1rem;
  }

  .strength-card h3 {
    font-size: 1.1rem;
    padding-right: 2.5rem;
    margin-bottom: 1rem;
  }

  .strength-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .principles-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .principles-grid {
    gap: 1.5rem;
  }

  .principle-item {
    padding: 1.8rem 1.2rem;
  }

  .principle-label {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .principle-value {
    font-size: 0.9rem;
  }

  .principles-footer {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
