/* About Us Page - Professional & Fully Responsive Design */
/* Font import removed to prevent conflicts with main styles.css */

/* ===============================
   ABOUT US SPECIFIC STYLES
   =============================== */

/* Ensure header consistency across pages */
.header .nav__item > a {
  font-size: inherit;
  font-weight: 500;
}

/* Header Responsiveness Fixes for Tablet Devices (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Force desktop navigation layout for all tablets */
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  
  .nav__list {
    flex-direction: row !important;
    gap: var(--space-sm) !important;
  }
  
  .nav__item > a {
    border-bottom: none !important;
    padding: var(--space-sm) var(--space-md) !important;
    font-size: 0.9rem !important;
  }
  
  /* Ensure dropdowns work correctly on tablets */
  .dropdown__menu {
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    max-height: none !important;
    margin: 0 !important;
    border-left: none !important;
    border-top: 3px solid var(--primary-color) !important;
    background-color: var(--neutral-100) !important;
    box-shadow: var(--shadow-lg) !important;
    min-width: 240px !important;
    left: -15px !important;
  }
  
  .dropdown:hover .dropdown__menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    padding: var(--space-lg) !important;
  }
  
  .dropdown__content {
    flex-direction: row !important;
    padding: var(--space-md) !important;
    gap: var(--space-lg) !important;
  }
  
  .dropdown__column {
    min-width: 160px !important;
  }
  
  .dropdown__column h3 {
    font-size: 0.95rem !important;
  }
  
  .dropdown__column a {
    font-size: 0.9rem !important;
    padding: var(--space-xs) 0 !important;
  }
  
  /* Header inner adjustments */
  .header__inner {
    padding: var(--space-md) 0 !important;
  }
  
  /* Logo scaling for tablets */
  .logo__image {
    height: 36px !important;
  }
  
  .header--sticky .logo__image {
    height: 30px !important;
  }
}

/* Specific fix for exactly 768px - ensure desktop navigation */
@media (min-width: 768px) and (max-width: 768px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  
  .nav__list {
    flex-direction: row !important;
    gap: var(--space-md) !important;
  }
  
  .nav__item > a {
    border-bottom: none !important;
    padding: var(--space-sm) var(--space-md) !important;
  }
  
  /* Ensure dropdowns work correctly at exactly 768px */
  .dropdown__menu {
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    max-height: none !important;
    margin: 0 !important;
    border-left: none !important;
    border-top: 3px solid var(--primary-color) !important;
    background-color: var(--neutral-100) !important;
    box-shadow: var(--shadow-lg) !important;
  }
  
  .dropdown:hover .dropdown__menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    padding: var(--space-lg) !important;
  }
  
  .dropdown__content {
    flex-direction: row !important;
  }
}

/* About Content Section */
.about-content {
  padding: var(--space-xxl) 0;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 35px; /* Reduced top margin for better proportions */
}

.about-section {
  margin-bottom: var(--space-xxl);
  padding: 0 var(--space-lg);
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--space-xl);
  text-align: center;
  position: relative;
  padding-bottom: var(--space-md);
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.about-section > p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral-600);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: var(--space-md);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* About Image */
.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
  align-self: center;
}

.about-image:hover {
  transform: translateY(-5px);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.value-card {
  background: var(--neutral-100);
  padding: var(--space-xl);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.value-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.value-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: var(--space-md);
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-600);
}

/* Team Section */
.team-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
  max-width: none;
  margin: 0;
  width: 100%;
}

.team-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-md);
  display: block;
  width: 100%;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral-600);
  display: block;
  width: 100%;
  margin-top: var(--space-md);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-xxl);
  padding: 0 var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

.team-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.team-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neutral-300), var(--neutral-400));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--neutral-500);
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  border: 4px solid white;
  transition: all 0.3s ease;
}

.team-card:hover .team-placeholder {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

.team-placeholder i {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  opacity: 0.7;
  color: var(--neutral-500);
}

.team-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  opacity: 0.8;
}

.team-info {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
}

.team-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.team-position {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-competency {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  margin-bottom: 0.875rem;
  line-height: 1.5;
  font-style: italic;
  padding: 0;
}

.team-email {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--neutral-100);
  border-radius: 6px;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.team-email:hover {
  background: var(--neutral-200);
  border-color: var(--primary-color);
}

.team-email a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.team-email a::before {
  content: '\f0e0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  opacity: 0.7;
}

.team-email a:hover {
  color: var(--primary-dark);
}

.team-phone {
  margin-bottom: 0.875rem;
  padding: 0.5rem 0.75rem;
  background: var(--neutral-100);
  border-radius: 6px;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.team-phone:hover {
  background: var(--neutral-200);
  border-color: var(--primary-color);
}

.team-phone a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.team-phone a::before {
  content: '\f095';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  opacity: 0.7;
}

.team-phone a:hover {
  color: var(--primary-dark);
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
  margin-top: 0.25rem;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: 0;
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.read-more-btn span,
.read-more-btn i {
  position: relative;
  z-index: 1;
}

.read-more-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.cta p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
}

.cta .btn--primary {
  background: white;
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta .btn--primary:hover {
  background: var(--neutral-200);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
  .about-content,
  .team-section .container {
    max-width: 1600px;
    padding: 0 var(--space-xxl);
  }
  
  .about-content {
    margin-top: 40px; /* Extra Large Screens: 40px top margin */
  }
  
  .about-section {
    padding: 0 var(--space-xxl);
  }
  
  .about-section h2 {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
  
  .cta h2 {
    font-size: 2.75rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xxl);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xxl);
    padding: 0 var(--space-lg);
  }
  
  .team-card {
    min-height: 520px;
  }
  
  .team-placeholder {
    width: 220px;
    height: 220px;
  }
  
  /* Fix Our Story section alignment on large screens */
  .about-grid {
    align-items: flex-start;
    gap: var(--space-xl);
  }
  
  .about-image {
    margin-top: 0;
    align-self: center;
  }
  
  .about-image img {
    height: 450px;
  }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) {
  .about-content,
  .team-section .container {
    max-width: 1200px;
    padding: 0 var(--space-lg);
  }
  
  .about-content {
    margin-top: 35px; /* Large Screens: 35px top margin */
  }
  
  .about-section h2 {
    font-size: 2.25rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .team-grid {
    padding: 0 var(--space-sm);
  }
  
  /* Ensure proper alignment for Our Story section */
  .about-grid {
    align-items: center;
  }
  
  .about-image img {
    height: 400px;
  }
}

/* Medium-Large Screens (992px - 1199px) */
@media (max-width: 1199px) {
  .about-content {
    padding: var(--space-xl) 0;
    margin-top: 30px; /* Medium-Large Screens: 30px top margin */
  }
  
  .team-section {
    padding: var(--space-xl) 0;
  }
  
  .team-section .container {
    padding: 0 var(--space-md);
  }
  
  .about-section {
    margin-bottom: var(--space-xl);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    padding: 0;
    max-width: 900px;
  }
  
  .team-placeholder {
    width: 180px;
    height: 180px;
  }
}

/* Medium Screens (768px - 991px) */
@media (max-width: 991px) {
  .about-content {
    margin-top: 25px; /* Medium Screens: 25px top margin */
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .about-grid .about-text {
    order: 2;
  }
  
  .about-grid .about-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta h2 {
    font-size: 1.875rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .team-section .container {
    padding: 0 var(--space-sm);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: var(--space-xl);
    padding: 0;
  }
  
  .value-card {
    padding: var(--space-lg);
  }
  
  .team-info {
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
  }
  
  .team-placeholder {
    width: 160px;
    height: 160px;
  }
  
  .team-image {
    height: 240px;
    padding: var(--space-lg);
  }
}

/* Small-Medium Screens (576px - 767px) */
@media (max-width: 767px) {
  .about-content {
    padding: var(--space-lg) 0;
    margin-top: 20px; /* Small-Medium Screens: 20px top margin */
  }
  
  .team-section {
    padding: var(--space-lg) 0;
  }
  
  .team-section .container {
    padding: 0 var(--space-xs);
  }
  
  .about-section {
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-md);
  }
  
  .about-section h2 {
    font-size: 1.875rem;
    margin-bottom: var(--space-lg);
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
    display: block;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
    display: block;
    width: 100%;
    margin-bottom: var(--space-md);
  }
  
  .about-section > p {
    font-size: 1rem;
  }
  
  .section-header p {
    font-size: 1rem;
    display: block;
    width: 100%;
  }
  
  .cta {
    padding: var(--space-lg) 0;
  }
  
  .cta h2 {
    font-size: 1.75rem;
  }
  
  .cta p {
    font-size: 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 400px;
  }
  
  .team-card {
    border-radius: 20px;
  }
  
  .team-image {
    height: 220px;
    padding: var(--space-md);
  }
  
  .team-placeholder {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }
  
  .team-placeholder i {
    font-size: 2.5rem;
  }
  
  .values-grid {
    gap: var(--space-md);
  }
  
  .value-card {
    padding: var(--space-md);
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }
  
  .team-info {
    padding: 1rem 1rem 1.25rem;
  }
  
  .team-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }
  
  .team-position {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
  
  .team-competency {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .team-email,
  .team-phone {
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.625rem;
  }
  
  .team-email a,
  .team-phone a {
    font-size: 0.75rem;
  }
  
  .read-more-btn {
    font-size: 0.75rem;
    padding: 0.45rem 0.875rem;
    margin-top: 0.25rem;
  }
}

/* Small Screens (480px - 575px) */
@media (max-width: 575px) {
  .about-content {
    margin-top: 15px; /* Small Screens: 15px top margin */
  }
  
  .about-section {
    padding: 0 var(--space-sm);
  }
  
  .team-section .container {
    padding: 0 var(--space-xs);
  }
  
  .cta__content {
    padding: 0 var(--space-sm);
  }
  
  .about-section h2 {
    font-size: 1.75rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .cta h2 {
    font-size: 1.625rem;
  }
  
  .about-image {
    border-radius: 8px;
  }
  
  .about-image img {
    height: 250px;
  }
  
  .team-card {
    border-radius: 16px;
  }
  
  .team-image {
    height: 200px;
    padding: var(--space-sm);
  }
  
  .team-placeholder {
    width: 120px;
    height: 120px;
    border-width: 2px;
  }
  
  .team-placeholder i {
    font-size: 2rem;
  }
  
  .team-placeholder span {
    font-size: 0.8rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 350px;
  }
  
  .team-info {
    padding: var(--space-sm) var(--space-sm) var(--space-md);
  }
  
  .team-info h3 {
    font-size: 1.2rem;
  }
  
  .team-position {
    font-size: 0.9rem;
  }
  
  .team-competency {
    font-size: 0.9rem;
    padding: 0;
  }
}

/* Extra Small Screens (320px - 479px) */
@media (max-width: 479px) {
  .about-content {
    padding: var(--space-md) 0;
    margin-top: 10px; /* Extra Small Screens: 10px top margin */
  }
  
  .team-section {
    padding: var(--space-md) 0;
  }
  
  .team-section .container {
    padding: 0 var(--space-xs);
  }
  
  .about-section {
    margin-bottom: var(--space-md);
  }
  
  .about-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }
  
  .section-header h2 {
    font-size: 1.5rem;
    display: block;
    width: 100%;
    margin-bottom: var(--space-md);
  }
  
  .section-header {
    margin-bottom: var(--space-md);
    display: block;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 1.5rem;
  }
  
  .about-section > p,
  .section-header p,
  .cta p {
    font-size: 0.9rem;
  }
  
  .section-header p {
    display: block;
    width: 100%;
  }
  
  .value-card h3 {
    font-size: 1.25rem;
  }
  
  .team-info h3 {
    font-size: 1.1rem;
  }
  
  .team-position {
    font-size: 0.85rem;
  }
  
  .team-competency {
    font-size: 0.85rem;
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .btn--primary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .team-grid {
    max-width: 320px;
  }
  
  .team-placeholder {
    width: 100px;
    height: 100px;
  }
  
  .team-placeholder i {
    font-size: 1.75rem;
  }
  
  .team-placeholder span {
    font-size: 0.75rem;
  }
  
  .team-image {
    height: 160px;
  }
  
  .read-more-btn {
    font-size: 0.85rem;
    padding: var(--space-xs) var(--space-sm);
  }
}

/* Animation Utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .about-image img,
  .team-image img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print Styles */
@media print {
  .cta,
  .team-section,
  .footer {
    display: none;
  }
  
  .about-content {
    padding: 0;
  }
  
  .about-section {
    break-inside: avoid;
    margin-bottom: 2rem;
  }
  
  .value-card {
    break-inside: avoid;
  }
}

/* Focus Styles for Accessibility */
.read-more-btn:focus,
.team-email a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .value-card,
  .team-card,
  .about-image,
  .read-more-btn {
    transition: none;
  }
  
  .about-image:hover,
  .value-card:hover,
  .team-card:hover,
  .read-more-btn:hover {
    transform: none;
  }
}

/* iPad Mini and iPad Air Responsive Design */
@media (min-width: 768px) and (max-width: 820px) {
  /* Navigation specific adjustments for smaller tablets */
  .nav__list {
    gap: var(--space-xs) !important;
  }
  
  .nav__item > a {
    font-size: 0.85rem !important;
    padding: var(--space-xs) var(--space-sm) !important;
  }
  
  .dropdown__menu {
    min-width: 220px !important;
    left: -10px !important;
  }
  
  .dropdown__content {
    padding: var(--space-sm) !important;
    gap: var(--space-md) !important;
  }
  
  .dropdown__column {
    min-width: 140px !important;
  }
  
  .dropdown__column h3 {
    font-size: 0.9rem !important;
  }
  
  .dropdown__column a {
    font-size: 0.85rem !important;
  }
  
  /* Tablet Portrait: iPad Mini (768x1024) */
  .about-content {
    padding: var(--space-xxl) 0;
    margin-top: 25px;
    max-width: 100%;
  }
  
  .about-section {
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-lg);
  }
  
  .about-section h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
  
  .about-section h2::after {
    width: 70px;
    height: 3px;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
    display: block;
    width: 100%;
  }
  
  .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    display: block;
    width: 100%;
  }
  
  /* About Grid Layout - Stack on smaller tablets */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .about-image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
  
  /* Values Grid - 2 columns for better balance */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .value-card {
    padding: var(--space-lg);
    border-radius: 16px;
  }
  
  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  }
  
  .value-icon {
    width: 65px;
    height: 65px;
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }
  
  .value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }
  
  .value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Team Grid - 2 columns for optimal viewing */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
  }
  
  .team-card {
    border-radius: 20px;
    min-height: auto;
  }
  
  .team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  }
  
  .team-image {
    height: 240px;
    padding: var(--space-lg);
  }
  
  .team-placeholder {
    width: 160px;
    height: 160px;
    border-width: 3px;
  }
  
  .team-placeholder i {
    font-size: 3rem;
  }
  
  .team-placeholder span {
    font-size: 0.85rem;
  }
  
  .team-info {
    padding: 1.125rem 1.125rem 1.375rem;
  }
  
  .team-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }
  
  .team-position {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
  
  .team-competency {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }
  
  .team-email,
  .team-phone {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.45rem 0.675rem;
  }
  
  .team-email a,
  .team-phone a {
    font-size: 0.75rem;
  }
  
  .read-more-btn {
    font-size: 0.75rem;
    padding: 0.45rem 0.875rem;
    margin-top: 0.25rem;
  }
  
  /* CTA Section */
  .cta {
    padding: var(--space-xxl) var(--space-lg);
    margin: var(--space-xxl) 0;
  }
  
  .cta h2 {
    font-size: 2.1rem;
    margin-bottom: var(--space-md);
  }
  
  .cta p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta .btn--primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    min-height: 48px;
    border-radius: 8px;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  /* Navigation specific adjustments for larger tablets */
  .nav__list {
    gap: var(--space-md) !important;
  }
  
  .nav__item > a {
    font-size: 0.95rem !important;
    padding: var(--space-sm) var(--space-md) !important;
  }
  
  .dropdown__menu {
    min-width: 250px !important;
    left: -18px !important;
  }
  
  .dropdown__content {
    padding: var(--space-lg) !important;
    gap: var(--space-xl) !important;
  }
  
  .dropdown__column {
    min-width: 170px !important;
  }
  
  .dropdown__column h3 {
    font-size: 1rem !important;
  }
  
  .dropdown__column a {
    font-size: 0.95rem !important;
  }
  
  /* Tablet Landscape: iPad Air (834x1194) and iPad Pro (1024x1366) */
  .about-content {
    padding: var(--space-xxl) 0;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-section {
    margin-bottom: var(--space-xxl);
    padding: 0 var(--space-xl);
  }
  
  .about-section h2 {
    font-size: 2.4rem;
    margin-bottom: var(--space-xl);
  }
  
  .about-section h2::after {
    width: 75px;
    height: 4px;
  }
  
  .section-header h2 {
    font-size: 2.4rem;
    margin-bottom: var(--space-lg);
    display: block;
    width: 100%;
  }
  
  .section-header p {
    font-size: 1.125rem;
    line-height: 1.7;
    display: block;
    width: 100%;
  }
  
  .about-section > p {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto var(--space-xl);
  }
  
  /* About Grid Layout - Side by side with proper proportions */
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
  }
  
  .about-text {
    padding-right: var(--space-md);
  }
  
  .about-text h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }
  
  .about-image {
    max-width: none;
    border-radius: 12px;
  }
  
  .about-image img {
    height: 350px;
    width: 100%;
    object-fit: cover;
  }
  
  /* Values Grid - 3 columns for optimal balance */
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .value-card {
    padding: var(--space-xl);
    border-radius: 18px;
    min-height: 220px;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
  }
  
  .value-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
  }
  
  .value-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Team Grid - 3 columns for professional layout */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .team-card {
    border-radius: 22px;
    min-height: unset;
    display: flex;
    flex-direction: column;
  }
  
  .team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.2);
  }
  
  .team-image {
    height: 260px;
    padding: var(--space-xl);
    flex-shrink: 0;
  }
  
  .team-placeholder {
    width: 170px;
    height: 170px;
    border-width: 4px;
  }
  
  .team-placeholder i {
    font-size: 3.25rem;
  }
  
  .team-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .team-info {
    padding: 1.25rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .team-info h3 {
    font-size: 1.1875rem;
    margin-bottom: 0.375rem;
    line-height: 1.3;
  }
  
  .team-position {
    font-size: 0.8375rem;
    margin-bottom: 0.625rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .team-competency {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 0.875rem;
    flex: 1;
  }
  
  .team-email,
  .team-phone {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
  
  .team-email a,
  .team-phone a {
    font-size: 0.78rem;
  }
  
  .read-more-btn {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
    margin-top: 0.375rem;
  }
  
  .read-more-btn:hover {
    transform: translateX(5px) translateY(-2px);
  }
  
  /* CTA Section */
  .cta {
    padding: var(--space-xxl) var(--space-xl);
    margin: var(--space-xxl) 0;
  }
  
  .cta__content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta h2 {
    font-size: 2.3rem;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
  }
  
  .cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
  }
  
  .cta .btn--primary {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    min-height: 52px;
    border-radius: 10px;
  }
  
  .cta .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
}

/* Enhanced Touch and Accessibility for Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Ensure all interactive elements are touch-friendly with modern design */
  .read-more-btn,
  .team-email a,
  .team-phone a,
  .cta .btn--primary {
    min-height: 48px;
    min-width: 48px;
    touch-action: manipulation;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Enhanced focus visibility for accessibility */
  .read-more-btn:focus,
  .team-email a:focus,
  .team-phone a:focus,
  .cta .btn--primary:focus {
    outline: 3px solid rgba(26, 54, 93, 0.4);
    outline-offset: 3px;
    box-shadow: 0 0 0 1px rgba(26, 54, 93, 0.2);
  }
  
  /* Professional hover states with smooth animations */
  .value-card:hover,
  .team-card:hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .value-card:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  }
  
  .team-card:hover {
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
  }
  
  /* Improve text readability and typography */
  .value-card p,
  .team-competency,
  .about-text p,
  .section-header p {
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Professional image handling */
  .team-member-photo {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid white;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  }
  
  .team-card:hover .team-member-photo {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  }
  
  .about-image img {
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .about-image:hover img {
    transform: scale(1.02);
  }
  
  /* Enhanced container and spacing */
  .container {
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
  }
  
  .team-section .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
  
  /* Professional gradient backgrounds for enhanced visual hierarchy */
  .value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.06);
  }
  
  /* Enhanced button styling - maintain original design consistency */
  .read-more-btn {
    /* Keep original transparent design with border */
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
  }
  
  .read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: 0;
  }
  
  .read-more-btn:hover::before {
    left: 0;
  }
  
  .read-more-btn:hover {
    color: white;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
    transform: translateY(-2px);
  }
  
  .read-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.4);
  }
  
  /* Professional scrolling and momentum */
  .about-content,
  .team-section {
    scroll-behavior: smooth;
  }
  
  /* Enhanced section separations */
  .about-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
    margin-top: var(--space-xl);
  }
  
  .about-section:last-child::after {
    display: none;
  }
}

/* Professional Landscape Orientation Optimizations (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .about-content {
    padding: var(--space-xl) 0;
    margin-top: 20px;
  }
  
  .about-section {
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-lg);
  }
  
  .about-section h2 {
    font-size: clamp(2rem, 3vw, 2.2rem);
    margin-bottom: var(--space-lg);
  }
  
  .section-header {
    margin-bottom: var(--space-xl);
    display: block;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: clamp(2rem, 3vw, 2.2rem);
    margin-bottom: var(--space-md);
    display: block;
    width: 100%;
  }
  
  .section-header p {
    display: block;
    width: 100%;
  }
  
  /* Optimized Values Grid for landscape */
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .value-card {
    padding: var(--space-lg);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
  }
  
  .value-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }
  
  .value-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
  }
  
  /* Optimized Team Grid for landscape viewing */
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
  }
  
  .team-card {
    min-height: unset;
    border-radius: 18px;
  }
  
  .team-image {
    height: 200px;
    padding: var(--space-md);
  }
  
  .team-placeholder {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }
  
  .team-placeholder i {
    font-size: 2.5rem;
  }
  
  .team-placeholder span {
    font-size: 0.75rem;
  }
  
  .team-info {
    padding: 0.875rem 0.875rem 1.125rem;
  }
  
  .team-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }
  
  .team-position {
    font-size: 0.75rem;
    margin-bottom: 0.45rem;
  }
  
  .team-competency {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
  }
  
  .team-email,
  .team-phone {
    font-size: 0.7rem;
    margin-bottom: 0.375rem;
    padding: 0.375rem 0.5rem;
  }
  
  .team-email a,
  .team-phone a {
    font-size: 0.7rem;
  }
  
  .read-more-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    margin-top: 0.25rem;
    border-radius: 6px;
  }
  
  /* Compact CTA for landscape */
  .cta {
    padding: var(--space-xl) var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.1rem);
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }
  
  .cta p {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
  }
  
  .cta .btn--primary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    min-height: 44px;
    border-radius: 8px;
  }
  
  /* Optimize about grid for landscape */
  .about-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .about-image img {
    height: 280px;
  }
  
  .about-text h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
  }
  
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }
  
  /* Enhanced scrolling performance */
  .about-content,
  .team-section {
    scroll-behavior: smooth;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Reduce motion for performance */
  .team-card:hover,
  .value-card:hover {
    transform: translateY(-5px);
  }
  
  .team-card:hover .team-member-photo {
    transform: scale(1.03);
  }
}