/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Body Background */
}

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__dark-bg {
  background: #0A0A0A; /* Matches body bg, ensures consistent dark theme */
  color: #FFF6D6;
}

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #F2C14E; /* Main color */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

.page-about__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.page-about__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width for flex item */
}

.page-about__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-about__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px #FFD36B;
}

.page-about__hero-description {
  font-size: 20px;
  color: #FFD36B; /* Accent color */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  border: none;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

/* Mission and Vision */
.page-about__mission-vision-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.page-about__mission, .page-about__vision {
  flex: 1 1 calc(50% - 20px);
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-about__mission .page-about__image, .page-about__vision .page-about__image {
  margin-top: 0;
  margin-bottom: 20px;
}

/* Why Choose Us */
.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-about__feature-icon {
  width: 100%;
  max-width: 150px; /* Adjust size for icons */
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(242, 193, 78, 0.7));
}

.page-about__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-about__feature-description {
  font-size: 15px;
  color: #FFF6D6; /* Text Main */
}

/* Products and Services */
.page-about__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__product-card {
  background: #111111; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-about__product-card .page-about__image {
  margin-top: 0;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__product-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-about__product-description {
  font-size: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-about__cta-wrapper {
  margin-top: 50px;
  text-align: center;
}

/* Commitment Section */
.page-about__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__commitment-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-about__commitment-item .page-about__sub-title {
  margin-top: 0;
}

/* Team Section */
.page-about__team-image {
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* FAQ Section */
details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Main color */
  font-weight: bold;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}
.page-about__faq-qtext {
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6; /* Text Main */
}
.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 20px;
  background: rgba(17, 17, 17, 0.8); /* Slightly transparent card bg */
  border-radius: 0 0 8px 8px;
  text-align: left;
  color: #FFF6D6; /* Text Main */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 42px;
  }
  .page-about__section-title {
    font-size: 30px;
  }
  .page-about__sub-title {
    font-size: 22px;
  }
  .page-about__hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 20px;
  }
  .page-about__text-block {
    font-size: 15px;
  }
  .page-about__mission-vision-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__mission, .page-about__vision {
    padding: 25px;
  }
  .page-about__features-grid, .page-about__product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__feature-card, .page-about__product-card, .page-about__commitment-item {
    padding: 25px;
  }
  .page-about__feature-icon {
    max-width: 120px;
  }
  .page-about__faq-item summary.page-about__faq-question { padding: 15px; }
  .page-about__faq-qtext { font-size: 16px; }
  .page-about__faq-toggle { font-size: 24px; }
  details.page-about__faq-item .page-about__faq-answer { padding: 0 15px 15px; }

  /* Mobile image and container responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section, .page-about__container, .page-about__card, .page-about__cta-wrapper, .page-about__product-card, .page-about__feature-card, .page-about__commitment-item, .page-about__mission, .page-about__vision {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__cta-buttons, .page-about__button-group, .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 28px;
  }
  .page-about__section-title {
    font-size: 22px;
  }
  .page-about__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-about__feature-title, .page-about__product-title {
    font-size: 20px;
  }
  .page-about__faq-qtext {
    font-size: 15px;
  }
}