:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #1a1a1a;
}

.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

.page-about-hero {
  position: relative;
  width: 100%;
  height: 500px; /* Adjusted height for better visual */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-color-light);
  padding: 0 20px;
  overflow: hidden;
}

.page-about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  z-index: 1;
}

.page-about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-about-main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about-hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.page-about-cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color-dark);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about-cta-button:hover {
  background-color: #FFC107; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about-section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-about-section:last-of-type {
  border-bottom: none;
}

.page-about-overview, .page-about-products, .page-about-promotions {
  background-color: #ffffff;
}

.page-about-values, .page-about-security, .page-about-future {
  background-color: var(--background-light);
}

.page-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-about-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-about-content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-about-text-content {
  flex: 1;
  font-size: 1.1em;
  color: var(--text-color-dark);
}

.page-about-text-content h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about-text-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-about-text-content ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-about-text-content li {
  margin-bottom: 8px;
}

.page-about-image-content {
  flex: 1;
  text-align: center;
}

.page-about-img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-about-small-button {
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 20px;
}

.page-about-contact-info {
  background-color: var(--background-dark);
  color: var(--text-color-light);
  padding: 60px 0;
  text-align: center;
}

.page-about-contact-info .page-about-section-title {
  color: var(--primary-color);
}

.page-about-contact-info .page-about-section-title::after {
  background-color: var(--secondary-color);
}

.page-about-contact-info p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.page-about-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.page-about-contact-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
}

.page-about-contact-list li strong {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about-main-title {
    font-size: 2.8em;
  }

  .page-about-hero-description {
    font-size: 1.1em;
  }

  .page-about-section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }

  .page-about-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-about-content-wrapper.reverse {
    flex-direction: column;
  }

  .page-about-text-content, .page-about-image-content {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about-hero {
    height: 400px;
    padding: 0 15px;
  }

  .page-about-main-title {
    font-size: 2.2em;
  }

  .page-about-hero-description {
    font-size: 1em;
  }

  .page-about-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about-section {
    padding: 40px 0;
  }

  .page-about-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about-text-content h3 {
    font-size: 1.5em;
  }

  .page-about-text-content p, .page-about-text-content li {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-about-hero {
    height: 350px;
  }

  .page-about-main-title {
    font-size: 1.8em;
  }

  .page-about-hero-description {
    font-size: 0.9em;
  }

  .page-about-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-about-section-title {
    font-size: 1.5em;
  }

  .page-about-text-content h3 {
    font-size: 1.3em;
  }
}