/* style/about.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --dark-background: #1a1a1a;
  --light-text: #ffffff;
  --dark-text: #333333;
  --gray-bg: #f5f5f5;
  --border-color: #e0e0e0;
}

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

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

.page-about .section-title {
  font-size: 3em;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
  font-weight: bold;
}

.page-about .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

/* Hero Section */
.page-about .hero-section {
  background: linear-gradient(135deg, #1a1a1a, #333333);
  color: var(--light-text);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about .hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-about .hero-title {
  font-size: 4.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-about .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: var(--light-text);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

/* Content Sections */
.page-about .introduction-section, .page-about .history-section, .page-about .commitment-section {
  padding: 80px 0;
  background-color: var(--gray-bg);
}

.page-about .introduction-section {
  background-color: #ffffff;
}

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

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

.page-about .content-block .text-content {
  flex: 1;
  font-size: 1.1em;
}

.page-about .content-block .text-content h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about .content-block .text-content p {
  margin-bottom: 15px;
}

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

.page-about .content-block .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.page-about .why-choose-section {
  padding: 80px 0;
  background-color: var(--dark-background);
  color: var(--light-text);
}

.page-about .why-choose-section .section-title {
  color: var(--primary-color);
}

.page-about .why-choose-section .section-title::after {
  background-color: var(--light-text);
}

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

.page-about .grid-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about .grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-about .grid-item h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about .grid-item p {
  font-size: 1.05em;
  color: #cccccc;
}

.page-about .grid-item a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-about .grid-item a:hover {
  color: var(--secondary-color);
}

/* FAQ Section */
.page-about .faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-about .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.page-about .faq-question:hover {
  background-color: #f0f0f0;
}

.page-about .faq-question h3 {
  font-size: 1.3em;
  color: var(--dark-text);
  margin: 0;
  font-weight: bold;
}

.page-about .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-about .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-about .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background-color: #ffffff;
  color: var(--dark-text);
}

.page-about .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.page-about .faq-answer p {
  margin-bottom: 15px;
}

.page-about .faq-answer .faq-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about .faq-answer .faq-button:hover {
  background-color: #1a7ad4;
}

/* Contact CTA Section */
.page-about .contact-cta-section {
  background-color: var(--secondary-color);
  color: var(--light-text);
  padding: 80px 20px;
  text-align: center;
}

.page-about .contact-cta-section .section-title {
  color: var(--primary-color);
  margin-bottom: 25px;
}

.page-about .contact-cta-section .section-title::after {
  background-color: var(--light-text);
}

.page-about .contact-cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about .contact-cta-section .cta-button {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.page-about .contact-cta-section .cta-button:hover {
  background-color: #ffd200;
  color: var(--dark-text);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about .hero-title {
    font-size: 3.5em;
  }
  .page-about .hero-subtitle {
    font-size: 1.3em;
  }
  .page-about .section-title {
    font-size: 2.5em;
  }
  .page-about .content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-about .content-block.reverse {
    flex-direction: column;
  }
  .page-about .content-block .text-content, .page-about .content-block .image-content {
    flex: none;
    width: 100%;
  }
  .page-about .grid-item h3 {
    font-size: 1.4em;
  }
  .page-about .faq-question h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-about .hero-section {
    padding: 60px 15px;
  }
  .page-about .hero-title {
    font-size: 2.8em;
  }
  .page-about .hero-subtitle {
    font-size: 1.1em;
  }
  .page-about .cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-about .section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-about .introduction-section, .page-about .history-section, .page-about .why-choose-section, .page-about .commitment-section, .page-about .faq-section, .page-about .contact-cta-section {
    padding: 60px 0;
  }
  .page-about .content-block {
    gap: 30px;
  }
  .page-about .content-block .text-content {
    font-size: 1em;
  }
  .page-about .grid-container {
    grid-template-columns: 1fr;
  }
  .page-about .grid-item {
    padding: 25px;
  }
  .page-about .faq-question {
    padding: 15px;
  }
  .page-about .faq-question h3 {
    font-size: 1em;
  }
  .page-about .faq-toggle {
    font-size: 1.5em;
  }
  .page-about .faq-answer {
    padding: 0 15px;
  }
  .page-about .faq-item.active .faq-answer {
    padding: 15px;
  }
  .page-about .contact-cta-section p {
    font-size: 1em;
  }
}