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

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

.page-about-hero {
  background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-about-hero .page-about-container {
  position: relative;
  z-index: 2;
}

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

.page-about-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about-hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-about-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about-section:nth-of-type(odd) {
  background-color: #fefefe;
}

.page-about-heading {
  font-size: 2.5em;
  color: #001F3F;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about-grid-reverse {
  grid-template-columns: 1fr 1fr;
}

.page-about-grid-reverse .page-about-image-content {
  order: 2;
}

.page-about-grid-reverse .page-about-text-content {
  order: 1;
}

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

.page-about-highlight {
  color: #001F3F;
  font-weight: bold;
}

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

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

.page-about-value-item {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-about-value-item h3 {
  color: #001F3F;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-about-value-item p {
  color: #666;
  font-size: 1em;
}

.page-about-value-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}

.page-about-cta-section {
  background: linear-gradient(90deg, #001F3F, #FFD700);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.page-about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-about-cta-section .page-about-container {
  position: relative;
  z-index: 2;
}

.page-about-cta-section .page-about-heading {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 20px;
}

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

.page-about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-about-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about-btn-primary {
  background-color: #FFD700;
  color: #001F3F;
}

.page-about-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about-btn-secondary {
  background-color: #001F3F;
  color: #fff;
  border: 2px solid #FFD700;
}

.page-about-btn-secondary:hover {
  background-color: #003366;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about-cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about-grid {
    grid-template-columns: 1fr;
  }
  .page-about-grid-reverse .page-about-image-content {
    order: unset;
  }
  .page-about-grid-reverse .page-about-text-content {
    order: unset;
  }
  .page-about-title {
    font-size: 2.8em;
  }
  .page-about-subtitle {
    font-size: 1.3em;
  }
  .page-about-heading {
    font-size: 2em;
  }
  .page-about-value-item {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-about-hero {
    padding: 60px 15px;
  }
  .page-about-section {
    padding: 40px 0;
  }
  .page-about-title {
    font-size: 2.2em;
  }
  .page-about-subtitle {
    font-size: 1.1em;
  }
  .page-about-heading {
    font-size: 1.8em;
  }
  .page-about-cta-section {
    padding: 60px 15px;
  }
  .page-about-cta-section .page-about-heading {
    font-size: 2.2em;
  }
  .page-about-cta-section p {
    font-size: 1em;
  }
  .page-about-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about-title {
    font-size: 1.8em;
  }
  .page-about-subtitle {
    font-size: 1em;
  }
  .page-about-heading {
    font-size: 1.5em;
  }
  .page-about-values-grid {
    grid-template-columns: 1fr;
  }
  .page-about-cta-buttons {
    flex-direction: column;
  }
  .page-about-btn {
    width: 80%;
    margin: 0 auto;
  }
}