/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8; /* A very light background to ensure contrast */
}

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

.page-about__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #26A9E0;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__paragraph {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333333;
}

.page-about__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-about__list-item {
  margin-bottom: 10px;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #FFFFFF;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: 30px;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.page-about__subtitle {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-about__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

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

.page-about__btn--secondary:hover {
  background-color: #f0f8ff;
  color: #1e87b7;
  border-color: #1e87b7;
}

/* General Section Styles */
.page-about__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
}

.page-about__dark-section .page-about__section-title,
.page-about__dark-section .page-about__sub-title {
  color: #FFFFFF;
}

.page-about__dark-section .page-about__paragraph,
.page-about__dark-section .page-about__list-item {
  color: #f0f0f0;
}

.page-about__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 60px 0;
}

/* Grid Layout for sections */
.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__grid-layout--reverse {
  grid-template-areas: "image text";
}

.page-about__grid-layout--reverse .page-about__text-block { grid-area: text; }
.page-about__grid-layout--reverse .page-about__image-wrapper { grid-area: image; }

.page-about__image-wrapper {
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about__value-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

.page-about__value-card .page-about__card-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-about__value-card .page-about__card-text {
  color: #f0f0f0;
  font-size: 1rem;
}

/* Tech & Security Section */
.page-about__tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-about__tech-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-about__tech-card:hover {
  transform: translateY(-5px);
}

.page-about__tech-card .page-about__card-title {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-about__tech-card .page-about__card-text {
  color: #f0f0f0;
  font-size: 1rem;
}

.page-about__image-wrapper--full-width {
  margin-top: 30px;
}

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

.page-about__product-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-about__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-about__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-about__product-card .page-about__card-title {
  font-size: 1.3rem;
  color: #26A9E0;
  padding: 15px 20px 5px 20px;
}

.page-about__product-card .page-about__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-about__product-card .page-about__card-title a:hover {
  text-decoration: underline;
}

.page-about__product-card .page-about__card-text {
  font-size: 0.95rem;
  color: #555555;
  padding: 0 20px 20px 20px;
}

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

/* FAQ Section */
.page-about__faq-list {
  margin-top: 40px;
}

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-question .page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #FFFFFF;
  border-top: none;
}

.page-about__faq-answer .page-about__paragraph {
  margin-bottom: 0;
}

/* Contact Section */
.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.page-about__contact-item {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-about__contact-item strong {
  color: #FFFFFF;
}

.page-about__contact-item a {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-about__grid-layout--reverse {
    grid-template-areas: unset;
  }
  .page-about__grid-layout--reverse .page-about__text-block, 
  .page-about__grid-layout--reverse .page-about__image-wrapper {
    grid-area: unset;
  }
  .page-about__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__container {
    padding: 0 15px !important;
  }
  .page-about__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-about__subtitle {
    font-size: 1rem;
  }
  .page-about__btn {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 20px;
  }
  .page-about__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
  .page-about__paragraph {
    font-size: 1rem;
  }
  .page-about__list {
    padding-left: 20px;
  }
  .page-about__image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
  }
  .page-about__image-wrapper,
  .page-about__hero-image-wrapper,
  .page-about__products-grid,
  .page-about__values-grid,
  .page-about__tech-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__product-card .page-about__card-title {
    font-size: 1.2rem;
  }
  .page-about__product-card .page-about__card-text {
    font-size: 0.9rem;
  }
  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-about__faq-answer {
    padding: 15px;
  }
  .page-about__contact-item {
    font-size: 1rem;
  }
  .page-about__dark-section, .page-about__light-bg {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-about__hero-content {
    padding: 0 10px;
  }
  .page-about__btn {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
}