.page-about {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Ensure consistency with body background */
}

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

.page-about__hero-section {
  padding: 120px 0 60px; /* Adjusted padding-top for fixed header */
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__main-title {
  font-size: 48px;
  color: var(--primary-color, #007bff);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background: var(--secondary-color, #0056b3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button--secondary {
  background: var(--accent-color, #ffc107);
  color: #333333;
}

.page-about__cta-button--secondary:hover {
  background: #e0a800;
  color: #1a1a1a;
}

.page-about__section-title {
  font-size: 38px;
  color: var(--accent-color, #ffc107);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-about__section-subtitle {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #cccccc;
}

.page-about__values-section {
  padding: 80px 0;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about__value-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__value-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px var(--accent-color, #ffc107));
}

.page-about__value-heading {
  font-size: 24px;
  color: var(--primary-color, #007bff);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__value-text {
  font-size: 16px;
  color: #cccccc;
}

.page-about__products-section {
  padding: 80px 0;
  background: #121212;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about__product-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-about__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__product-title {
  font-size: 22px;
  color: var(--accent-color, #ffc107);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-about__product-description {
  font-size: 15px;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-about__product-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__product-button:hover {
  background: var(--secondary-color, #0056b3);
}

.page-about__security-section {
  padding: 80px 0;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about__security-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-about__security-heading {
  font-size: 24px;
  color: var(--primary-color, #007bff);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__security-text {
  font-size: 16px;
  color: #cccccc;
}

.page-about__vision-section {
  padding: 80px 0;
  background: #121212;
}

.page-about__vision-content {
  font-size: 17px;
  color: #f0f0f0;
  text-align: justify;
}

.page-about__vision-content p {
  margin-bottom: 20px;
}

.page-about__vision-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-about__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(45deg, var(--primary-color, #007bff), #0056b3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-about__cta-bottom-section .page-about__section-title {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__cta-bottom-section .page-about__section-subtitle {
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 42px;
  }
  .page-about__section-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section {
    padding: 100px 0 40px; /* Mobile padding-top */
  }

  .page-about__main-title {
    font-size: 32px !important;
    margin-bottom: 15px;
  }

  .page-about__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-about__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .page-about__section-title {
    font-size: 28px !important;
    margin-bottom: 15px;
  }

  .page-about__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-about__values-section,
  .page-about__products-section,
  .page-about__security-section,
  .page-about__vision-section,
  .page-about__cta-bottom-section {
    padding: 50px 0;
  }

  .page-about__values-grid,
  .page-about__product-grid,
  .page-about__security-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__value-item,
  .page-about__security-item {
    padding: 20px;
  }

  .page-about__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-about__value-heading,
  .page-about__security-heading {
    font-size: 20px;
  }

  .page-about__product-image {
    height: 180px;
  }

  .page-about__product-title {
    font-size: 20px;
    padding: 15px 15px 8px;
  }

  .page-about__product-description {
    font-size: 14px;
    padding: 0 15px 15px;
  }

  .page-about__product-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 10px 0;
    font-size: 15px;
  }

  .page-about__vision-image {
    margin: 20px 0;
    max-height: 300px;
  }
  
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-about__values-section,
  .page-about__products-section,
  .page-about__security-section,
  .page-about__vision-section,
  .page-about__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}