/* Start custom CSS */.ag-about-page,
.ag-about-page * {
  box-sizing: border-box;
}

.ag-about-page {
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  color: #111C15;
  background: #F7F6F1;
}

.ag-about-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.ag-about-hero {
  background: #07160F;
  color: #fff;
  padding: 82px 0 78px;
  border-bottom: 3px solid #C9972B;
}

.ag-eyebrow {
  display: inline-flex;
  background: rgba(201,151,43,.12);
  border: 1px solid rgba(201,151,43,.28);
  color: #C9972B;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ag-about-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: .98;
  max-width: 860px;
  margin: 0 0 20px;
  color: #fff;
}

.ag-about-hero h1 span {
  color: #C9972B;
}

.ag-about-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.64);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.ag-about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.ag-btn-gold {
  background: #C9972B;
  color: #111C15;
}

.ag-btn-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.ag-about-section {
  background: #fff;
  padding: 64px 0;
}

.ag-light {
  background: #F7F6F1;
}

.ag-about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.ag-about-section small,
.ag-section-head small {
  display: block;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #C9972B;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ag-about-section h2,
.ag-section-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: #111C15;
}

.ag-about-section p,
.ag-section-head p {
  color: #667067;
  line-height: 1.75;
  margin: 0 0 16px;
  font-size: 15px;
}

.ag-about-values {
  background: #F7F6F1;
  padding: 70px 0;
}

.ag-section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.ag-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ag-info-card {
  background: #fff;
  border: 1px solid rgba(17,28,21,.08);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,.04);
}

.ag-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.ag-info-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #111C15;
}

.ag-info-card p {
  margin: 0;
  color: #667067;
  line-height: 1.65;
  font-size: 14px;
}

.ag-about-numbers {
  background: #07160F;
  padding: 42px 0;
}

.ag-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.ag-numbers-grid strong {
  display: block;
  font-family: Georgia, serif;
  color: #C9972B;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.ag-numbers-grid span {
  display: block;
  color: rgba(255,255,255,.48);
  font-family: monospace;
  font-size: 12px;
}

.ag-cta-box {
  background: #0E2418;
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ag-cta-box h2 {
  font-family: Georgia, serif;
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  color: #fff;
}

.ag-cta-box p {
  margin: 0;
  color: rgba(255,255,255,.64);
  line-height: 1.6;
  max-width: 680px;
}

.ag-legal-box {
  background: #FFF8E8;
  border: 1px solid rgba(201,151,43,.25);
  border-radius: 18px;
  padding: 22px;
  color: #5F4B20;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 28px;
}

.ag-legal-box strong {
  color: #111C15;
}

@media(max-width: 980px) {
  .ag-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ag-cards-grid {
    grid-template-columns: 1fr;
  }

  .ag-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 640px) {
  .ag-about-wrap {
    width: calc(100% - 24px);
  }

  .ag-about-hero {
    padding: 52px 0 48px;
  }

  .ag-about-hero p {
    font-size: 14px;
  }

  .ag-about-actions {
    flex-direction: column;
  }

  .ag-btn {
    width: 100%;
  }

  .ag-about-section,
  .ag-about-values {
    padding: 44px 0;
  }

  .ag-numbers-grid {
    grid-template-columns: 1fr;
  }

  .ag-cta-box {
    padding: 24px;
    border-radius: 18px;
  }

  .ag-legal-box {
    padding: 18px;
  }
}/* End custom CSS */