/* Achievements Section */
.achievements-section {
  background-color: #192f60;
  background-image: url("../images/backgrounds/orion_can.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 0;
  position: relative;
}

.achievements-section .section-container {
  text-align: center;
}

.achievements-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.achievement-stats-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
}

.achievements-section .section-title {
  color: #ffffff;
  font-size: 48px;
  white-space: nowrap;
}

/* Responsive design for achievements section title */
@media (max-width: 768px) {
  .achievements-section .section-title {
    font-size: 32px;
  }

  .achievements-image {
    margin: 30px 0;
  }

  .achievement-stats-image {
    max-width: 90%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .achievements-section .section-title {
    font-size: 24px;
  }

  .achievements-image {
    margin: 20px 0;
  }

  .achievement-stats-image {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .achievements-section .section-title {
    font-size: 20px;
  }

  .achievement-stats-image {
    max-width: 98%;
  }
}

@media (max-width: 360px) {
  .achievements-section .section-title {
    font-size: 18px;
  }

  .achievement-stats-image {
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  .achievements-section .section-title {
    font-size: 16px;
  }

  .achievement-stats-image {
    max-width: 100%;
  }
}

.achievements-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-bottom: 80px;
}

.achievement-stat {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.achievement-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievement-label {
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.achievement-value {
  font-family: "Inter-ExtraBold", Helvetica;
  font-weight: 800;
  font-size: 72px;
  color: #fbb03b;
  line-height: 1;
}

.achievement-decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.left-decoration {
  left: -80px;
}

.right-decoration {
  right: -80px;
}

.achievements-footnotes {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-top: 0;
}

.footnote-divider {
  width: 100px;
  height: 2px;
  background-color: #fbb03b;
  margin: 0 auto 20px;
}

.footnote-text {
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
  text-align: right;
}

/* Responsive adjustments for achievements */
@media (max-width: 1024px) {
  .achievements-stats {
    gap: 80px;
  }

  .left-leaf {
    left: -60px;
  }

  .right-leaf {
    right: -60px;
  }

  .achievements-footnotes {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .achievements-stats {
    flex-direction: column;
    gap: 60px;
  }

  .achievement-item {
    gap: 20px;
  }

  .achievement-value {
    font-size: 56px;
  }

  .achievements-title {
    font-size: 28px;
  }

  .achievements-footnotes {
    bottom: 10px;
    right: 10px;
  }

  .footnote-text {
    font-size: 10px;
  }

  .left-leaf,
  .right-leaf {
    position: static;
    transform: none;
  }

  .achievement-leaf svg {
    width: 80px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .achievement-value {
    font-size: 48px;
  }

  .achievements-title {
    font-size: 24px;
  }

  .achievement-label {
    font-size: 16px;
  }
}
