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

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

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

.page-about .section-title {
  font-size: 3em;
  color: var(--secondary-color);
  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;
}

.page-about .section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555;
}

/* Hero Section */
.page-about .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000050 100%); /* Dark blue gradient */
  color: var(--text-light);
}

.page-about .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-about .hero-content h1 {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

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

/* About Intro Section */
.page-about .about-intro-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-about .about-intro-section h3 {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 25px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-about .about-intro-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

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

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

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

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

.page-about .image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.page-about .why-choose-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-about .feature-item {
  background-color: #f9f9f9;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about .feature-item h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-about .feature-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
}

.page-about .feature-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-about .feature-item a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.page-about .small-feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-about .cta-bottom {
  text-align: center;
  margin-top: 60px;
}

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

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

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

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

.page-about .commitment-item {
  background-color: #2a2a4a; /* Darker blue */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about .commitment-item:hover {
  transform: translateY(-5px);
  background-color: #3a3a5a;
}

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

.page-about .commitment-item p {
  font-size: 1em;
  color: #c0c0c0;
  line-height: 1.7;
}

/* Team & Tech Section */
.page-about .team-tech-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-about .team-tech-section h3 {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 25px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-about .team-tech-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

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

.page-about .future-section h3 {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 25px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-about .future-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

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

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

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

.page-about .contact-us-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-about .contact-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

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

.page-about .contact-list li a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-about .contact-list li a:hover {
  text-decoration: underline;
}

.page-about .cta-contact {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about .section-title {
    font-size: 2.5em;
  }
  .page-about .hero-content h1 {
    font-size: 3em;
  }
  .page-about .hero-content p {
    font-size: 1.1em;
  }
  .page-about .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-about .content-wrapper {
    flex-direction: column;
  }
  .page-about .content-wrapper.reverse-layout {
    flex-direction: column;
  }
  .page-about .image-content {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about .section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-about .hero-section {
    padding: 60px 15px;
  }
  .page-about .hero-content h1 {
    font-size: 2.5em;
  }
  .page-about .hero-content p {
    font-size: 1em;
  }
  .page-about .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-about .about-intro-section, .page-about .why-choose-us-section, .page-about .commitment-section, .page-about .team-tech-section, .page-about .future-section, .page-about .contact-us-section {
    padding: 60px 0;
  }
  .page-about .about-intro-section h3, .page-about .team-tech-section h3, .page-about .future-section h3 {
    font-size: 1.8em;
  }
  .page-about .features-grid, .page-about .commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-about .feature-item, .page-about .commitment-item {
    padding: 25px;
  }
  .page-about .contact-list {
    padding: 0 15px;
  }
  .page-about .contact-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-about .contact-list li strong {
    margin-bottom: 5px;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-about .section-title {
    font-size: 1.8em;
  }
  .page-about .hero-content h1 {
    font-size: 2em;
  }
  .page-about .hero-content p {
    font-size: 0.95em;
  }
  .page-about .about-intro-section h3, .page-about .team-tech-section h3, .page-about .future-section h3 {
    font-size: 1.6em;
  }
  .page-about .feature-item h3, .page-about .commitment-item h3 {
    font-size: 1.5em;
  }
}