/* style/about.css */

/* --- Base Styles --- */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0; /* Lighter text for paragraphs on dark background */
}

/* --- Hero Section --- */
.page-about__hero-section {
  position: relative;
  padding: 100px 20px; /* Base padding */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* --- Buttons --- */
.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-about__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

.page-about__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-about__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8cc7;
  border-color: #1a8cc7;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: 40px;
}

/* --- Intro Section --- */
.page-about__intro-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background */
  color: #333333; /* Dark text */
}

.page-about__intro-section .page-about__section-title {
  color: #26A9E0;
}

.page-about__intro-section .page-about__text-block p {
  color: #333333;
}

.page-about__image {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* --- Why Choose Section --- */
.page-about__why-choose-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-about__why-choose-section .page-about__section-title {
  color: #26A9E0;
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* Light text */
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* --- Commitment Section --- */
.page-about__commitment-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background */
  color: #333333; /* Dark text */
}

.page-about__commitment-section .page-about__section-title {
  color: #26A9E0;
}

.page-about__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__commitment-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9; /* Slightly off-white background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-about__commitment-icon {
  width: 100%; /* Ensure image fills container */
  max-width: 200px; /* Max size for icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px; /* Min size for images */
  min-height: 200px; /* Min size for images */
}

.page-about__commitment-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__commitment-description {
  font-size: 1em;
  color: #555555;
}

/* --- Team Section --- */
.page-about__team-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-about__team-section .page-about__section-title {
  color: #26A9E0;
}

.page-about__team-section .page-about__text-block p {
  color: #f0f0f0;
}

/* --- Contact & FAQ Section --- */
.page-about__contact-faq-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background */
  color: #333333; /* Dark text */
}

.page-about__contact-faq-section .page-about__section-title {
  color: #26A9E0;
}

.page-about__contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.page-about__contact-info {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-about__contact-text {
  margin-bottom: 20px;
  color: #555555;
}

.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-about__contact-list a {
  color: #26A9E0;
  text-decoration: none;
}

.page-about__contact-list a:hover {
  text-decoration: underline;
}

.page-about__faq-list {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-about__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.page-about__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #eaf7ff; /* Light blue for summary */
  color: #26A9E0;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  list-style: none; /* Hide default marker */
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-about__faq-qtext {
  flex-grow: 1;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-about__faq-answer {
  padding: 15px 20px;
  background-color: #ffffff;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

.page-about__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-about__faq-answer a {
  color: #EA7C07; /* Login color for links */
  text-decoration: none;
}

.page-about__faq-answer a:hover {
  text-decoration: underline;
}

/* --- Color Contrast & Backgrounds --- */
.page-about__dark-bg {
  background-color: #0a0a0a; /* Body background color */
  color: #ffffff; /* Light text for dark background */
}