/* style/about.css */
/* Base styles for the About Us page */
.page-about {
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body background is #121212 from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom before footer */
}

/* Hero Introduction Section */
.page-about__hero-intro-section {
  position: relative;
  padding-top: 0; /* shared.css handles body padding-top */
  padding-bottom: 80px;
  background: linear-gradient(135deg, #0A1428, #1a2a4e); /* Dark gradient background */
  color: #ffffff;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-about__hero-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__hero-intro-content {
  flex: 1;
  z-index: 1;
}

.page-about__hero-intro-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
}

.page-about__hero-intro-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__hero-intro-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-about__hero-intro-image {
  flex: 1;
  text-align: right;
  z-index: 0;
}

.page-about__hero-intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: block;
  min-width: 200px; /* Ensure images are not small icons */
  min-height: 200px;
  object-fit: cover;
}

/* General Container */
.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Titles */
.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Accent color for section titles */
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Dark Section Background */
.page-about__dark-section {
  background-color: #0A1428; /* Main brand color for dark sections */
  padding: 80px 0;
}

/* About Section */
.page-about__about-section {
  padding: 80px 0;
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}