:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --gradient-button: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bg-card: #11271B;
  --bg-main: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

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

.page-about-us h1,
.page-about-us h2,
.page-about-us h3,
.page-about-us h4,
.page-about-us h5,
.page-about-us h6 {
  color: var(--text-main);
  margin-bottom: 1em;
  line-height: 1.2;
}

.page-about-us__main-title {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.page-about-us p {
  margin-bottom: 1em;
  color: var(--text-secondary);
}

.page-about-us a {
  color: var(--color-glow);
  text-decoration: none;
}

.page-about-us a:hover {
  text-decoration: underline;
}

.page-about-us__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-about-us__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.page-about-us__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-about-us__hero-content {
  max-width: 900px;
  width: 100%;
  z-index: 1;
}

.page-about-us__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

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

.page-about-us__btn-primary,
.page-about-us__btn-secondary,
.page-about-us__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about-us__btn-primary {
  background: var(--gradient-button);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about-us__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about-us__btn-secondary {
  background: transparent;
  color: var(--color-glow);
  border: 2px solid var(--color-glow);
}

.page-about-us__btn-secondary:hover {
  background: var(--color-glow);
  color: var(--bg-main);
  transform: translateY(-2px);
}

.page-about-us__btn-link {
  background: none;
  border: none;
  color: var(--color-glow);
  padding: 0;
  font-size: 1em;
  text-transform: none;
  text-decoration: underline;
}

.page-about-us__btn-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.page-about-us__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-divider);
}

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

.page-about-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about-us__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main);
  font-weight: 600;
}

.page-about-us__content-block {
  margin-bottom: 40px;
}

.page-about-us__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about-us__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-about-us__value-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  text-align: center;
}

.page-about-us__value-title {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 15px;
  font-weight: 700;
}

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

.page-about-us__product-card {
  background-color: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-about-us__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}