.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

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

.page-about-hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-about-hero p a {
  color: var(--secondary-color-light);
  text-decoration: underline;
  font-weight: bold;
}

.page-about-hero p a:hover {
  color: #ffffff;
  text-decoration: none;
}

.page-about-hero-image {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-about-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-about-cta-button:hover {
  background: var(--secondary-color-dark);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about-cta-small {
  padding: 12px 30px;
  font-size: 1.1em;
  margin-top: 30px;
}

.page-about-section {
  padding: 60px 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about-container:nth-child(even) {
  flex-direction: row-reverse;
}

.page-about-content,
.page-about-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-about h2 {
  font-size: 2.5em;
  color: var(--primary-color-dark);
  margin-bottom: 25px;
  text-align: center;
}

.page-about h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-about p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.05em;
}

.page-about p a,
.page-about li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-about p a:hover,
.page-about li a:hover {
  text-decoration: underline;
  color: var(--primary-color-dark);
}

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

.page-about ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 1.05em;
}

.page-about-mission .page-about-content,
.page-about-values .page-about-content,
.page-about-commitment .page-about-content {
  padding-right: 20px;
}

.page-about-mission .page-about-image-wrapper,
.page-about-values .page-about-image-wrapper,
.page-about-commitment .page-about-image-wrapper {
  padding-left: 20px;
}

.page-about-products h2 {
  margin-bottom: 40px;
}

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

.page-about-product-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about-product-card h3 {
  font-size: 1.5em;
  color: var(--primary-color-dark);
  margin-bottom: 10px;
}

.page-about-product-card h3 a {
  color: var(--primary-color-dark);
  text-decoration: none;
}

.page-about-product-card h3 a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.page-about-product-card p {
  font-size: 0.95em;
  color: #666;
}

.page-about-faq {
  background-color: #f0f4f7;
  padding: 60px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about-faq h2 {
  color: var(--primary-color-dark);
  margin-bottom: 40px;
  text-align: center;
}

.page-about-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #fefefe;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color-dark);
  flex-grow: 1;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin: 0;
  color: #666;
  font-size: 1.05em;
}

.faq-answer p a {
  color: var(--primary-color);
  text-decoration: underline;
}

.faq-answer p a:hover {
  color: var(--primary-color-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about-hero h1 {
    font-size: 2.8em;
  }
  .page-about-hero p {
    font-size: 1.1em;
  }
  .page-about h2 {
    font-size: 2.2em;
  }
  .page-about h3 {
    font-size: 1.6em;
  }
  .page-about-container {
    flex-direction: column;
    text-align: center;
  }
  .page-about-content,
  .page-about-image-wrapper {
    padding: 0;
  }
  .page-about-mission .page-about-content,
  .page-about-values .page-about-content,
  .page-about-commitment .page-about-content {
    padding-right: 0;
  }
  .page-about-mission .page-about-image-wrapper,
  .page-about-values .page-about-image-wrapper,
  .page-about-commitment .page-about-image-wrapper {
    padding-left: 0;
  }
  .page-about-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about-hero {
    padding: 60px 15px 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .page-about-hero h1 {
    font-size: 2.2em;
  }
  .page-about-hero p {
    font-size: 1em;
  }
  .page-about-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-about-section {
    padding: 40px 15px;
  }
  .page-about h2 {
    font-size: 2em;
  }
  .page-about h3 {
    font-size: 1.4em;
  }
  .page-about-product-card img {
    height: 180px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-about-hero h1 {
    font-size: 1.8em;
  }
  .page-about-hero p {
    font-size: 0.9em;
  }
  .page-about-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about h2 {
    font-size: 1.8em;
  }
  .page-about h3 {
    font-size: 1.2em;
  }
  .page-about-product-grid {
    grid-template-columns: 1fr;
  }
  .page-about-product-card img {
    height: 150px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
}