.page-about-company-profile {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #0A244A; /* Dark blue background */
  line-height: 1.6;
}

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

.page-about-company-profile__hero {
  background: linear-gradient(135deg, #0A244A 0%, #1A3E70 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about-company-profile__hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about-company-profile__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-about-company-profile__hero-subtitle {
  font-size: 1.3em;
  color: #B0C4DE; /* Lighter blue for subtitle */
  max-width: 800px;
  margin: 0 auto;
}

.page-about-company-profile__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about-company-profile__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about-company-profile__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-about-company-profile__section-description {
  font-size: 1.1em;
  color: #B0C4DE;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 40px;
}

.page-about-company-profile__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

@media (min-width: 768px) {
  .page-about-company-profile__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-about-company-profile__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
  .page-about-company-profile__content-grid--reverse > .page-about-company-profile__text-block {
    direction: ltr;
  }
  .page-about-company-profile__content-grid--reverse > .page-about-company-profile__image-block {
    direction: ltr;
  }
}

.page-about-company-profile__text-block {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about-company-profile__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-about-company-profile__text-block--full-width {
  grid-column: 1 / -1;
}

.page-about-company-profile__image-block {
  text-align: center;
}

.page-about-company-profile__img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about-company-profile__milestones ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about-company-profile__milestones li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-about-company-profile__milestones li strong {
  color: #FFD700;
}

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

.page-about-company-profile__product-item {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-company-profile__product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.page-about-company-profile__product-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about-company-profile__product-item p {
  font-size: 1em;
  color: #B0C4DE;
}

.page-about-company-profile__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-about-company-profile__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
  text-align: center;
}

.page-about-company-profile__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A244A; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-about-company-profile__btn--primary:hover {
  background-color: #E6C200; /* Darker gold */
  transform: translateY(-3px);
}

.page-about-company-profile__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-about-company-profile__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-about-company-profile__hero-title {
    font-size: 2.8em;
  }
  .page-about-company-profile__section-title {
    font-size: 2em;
  }
  .page-about-company-profile__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 767px) {
  .page-about-company-profile__hero {
    padding: 60px 0 30px;
  }
  .page-about-company-profile__hero-title {
    font-size: 2.2em;
  }
  .page-about-company-profile__hero-subtitle {
    font-size: 1.1em;
  }
  .page-about-company-profile__section {
    padding: 40px 0;
  }
  .page-about-company-profile__section-title {
    font-size: 1.8em;
  }
  .page-about-company-profile__sub-title {
    font-size: 1.4em;
  }
  .page-about-company-profile__text-block {
    padding: 15px;
  }
  .page-about-company-profile__milestones li {
    padding: 10px 15px;
    font-size: 1em;
  }
  .page-about-company-profile__product-item {
    padding: 20px;
  }
  .page-about-company-profile__product-title {
    font-size: 1.3em;
  }
  .page-about-company-profile__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about-company-profile__btn {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }
}