/* About Us Page Styles */

.gce-about-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: var(--gce-teal-dark);
  overflow: hidden;
}
.gce-about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gce-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.gce-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 88, 80, 0.95) 0%, rgba(14, 88, 80, 0.8) 50%, rgba(14, 88, 80, 0.4) 100%);
}
.gce-about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 86px 0 64px;
  text-align: left;
}
.gce-about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 18px;margin-top:20px;
  font-weight: 500;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gce-about-hero-badge svg {
  width: 16px;
  height: 16px;
  color: #a3e6cd;
}
.gce-about-hero h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.gce-breadcrumbs {
  background: #fff;
  border-bottom: 1px solid var(--gce-border);
  min-height: 72px;
  padding: 15px 0;
  font-size: 13px;
  color: var(--gce-gray-text);
}
.gce-breadcrumbs .gce-container {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gce-breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gce-gray-dark);
  font-weight: 500;
  transition: color 0.2s;
}
.gce-breadcrumbs a:hover {
  color: var(--gce-teal);
}
.gce-breadcrumbs a svg {
  width: 16px;
  height: 16px;
}
.gce-breadcrumbs .separator {
  color: #a0a8a6;
}

.gce-about-section {
  padding: 60px 0;
}

.gce-about-intro {
  background: #f8fafc;
  padding: 60px 0;
}
.gce-about-intro-title h2 {
  text-align: center;
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 32px;
  color: var(--gce-gray-dark);
}
.gce-about-intro-title h2 span {
  color: var(--gce-pink-dark);
}
.gce-about-intro-body {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 27px;
}
.gce-about-intro-image {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  background: #fdfdfd;
}
.gce-about-intro-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 20px;
  margin-left: -10%;
  max-width: 120%;
  transition: transform 0.3s ease;
}
.gce-about-intro-image:hover img {
  transform: scale(1.02);
}
.gce-about-intro-badge {
  position: absolute;
  top: 30px;
  right: -30px;
  background: var(--gce-pink-dark);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(169, 68, 66, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gce-about-intro-image:hover .gce-about-intro-badge {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(169, 68, 66, 0.3);
}
.gce-about-intro-badge svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.gce-about-intro-badge strong {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}
.gce-about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gce-about-intro-text p, .gce-about-intro-footer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.8);
}
.gce-about-intro-text strong, .gce-about-intro-footer strong {
  font-weight: 600;
  color: var(--gce-gray-dark);
}

.gce-about-why {
  background: #fff;
}
.gce-about-why-inner {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.gce-about-why-title h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.5;
  color: var(--gce-gray-dark);
}
.gce-about-why-title h2 span {
  color: var(--gce-pink-dark);
}
.gce-about-why-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gce-about-why-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.8);
}
.gce-about-why-text a {
  color: var(--gce-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;font-weight: 500;
}
.gce-about-why-text strong {
  font-weight: 600;
  color: var(--gce-gray-dark);
}

.gce-about-compare {
  background: #f8fafc;
}
.gce-about-compare-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}
.gce-about-compare-header h2 {
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--gce-gray-dark);
}
.gce-about-compare-header h2 span {
  color: var(--gce-pink-dark);
}
.gce-about-compare-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #4d4d4d;
  margin: 0 0 30px;
}
.gce-about-compare-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gce-gray-dark);
  margin: 0;
}
.gce-about-table-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.gce-about-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.gce-about-table th {
  background: var(--gce-pink-dark);
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  padding: 16px 24px;
  letter-spacing: 0.02em;
}
.gce-about-table td {
  padding: 18px 24px;
  font-size: 15px;
  color: #262626;
  border-bottom: 1px solid #e6e6e6;
  line-height: 1.5;
}
.gce-about-table tbody tr:last-child td {
  border-bottom: none;
}
.gce-about-table tbody tr {
  transition: background-color 0.2s ease;
}
.gce-about-table tbody tr:hover {
  background: #f1f5f4;
}
.gce-about-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.gce-about-table td strong {
  font-weight: 600;
}
.gce-about-table th:nth-child(1), .gce-about-table td:nth-child(1) {
  width: 25%;
}
.gce-about-table th:nth-child(2), .gce-about-table td:nth-child(2) {
  width: 40%;
}
.gce-about-table th:nth-child(3), .gce-about-table td:nth-child(3) {
  width: 35%;
}

.gce-about-cta {
  background: #fff;
  text-align: center;
  padding: 60px 0;
}
.gce-about-cta .gce-container {
  max-width: 800px;
}
.gce-about-cta h2 {
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 24px;
  color: var(--gce-gray-dark);
}
.gce-about-cta h2 span {
  color: var(--gce-pink-dark);
}
.gce-about-cta p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(17, 24, 39, 0.8);
  margin: 0 0 32px;
}
.gce-about-cta p strong {
  font-weight: 600;
  color: var(--gce-gray-dark);
}
.gce-about-cta .gce-btn {
  padding: 0 32px;
  height: 48px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(19, 106, 98, 0.2);
}
.gce-about-cta .gce-btn svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

@media (max-width: 1024px) {
  .gce-about-intro-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gce-about-intro-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .gce-about-intro-image img {
    margin-left: 0;
    max-width: 100%;
    clip-path: none;
  }
  .gce-about-intro-badge {
    right: 20px;
  }
  .gce-about-why-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .gce-about-section {
    padding: 56px 0;
  }
  .gce-about-hero h1 {
    font-size: 28px;
  }
  .gce-about-hero {
    min-height: 290px;
  }
  .gce-about-hero-content {
    padding: 40px 0;
  }
  .gce-about-hero-badge {
    white-space: normal;
    text-align: left;
  }
  .gce-about-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
  }
  .gce-about-table {
    min-width: 700px;
  }
}
/* Sitemap page */
.gce-sitemap-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 18% 25%, rgba(255,255,255,.16) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 70%, rgba(255,255,255,.12) 0 4px, transparent 5px),
    linear-gradient(125deg, #126f67 0%, #16897e 58%, #d95c72 145%);
}
.gce-sitemap-hero::before,
.gce-sitemap-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.gce-sitemap-hero::before { width: 330px; height: 330px; left: -120px; top: -190px; }
.gce-sitemap-hero::after { width: 260px; height: 260px; right: -80px; bottom: -175px; }
.gce-sitemap-hero .gce-container { position: relative; z-index: 1; }
.gce-sitemap-eyebrow {
  margin: 0 0 12px;
  color: var(--gce-teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gce-sitemap-hero .gce-sitemap-eyebrow { color: rgba(255,255,255,.82); }
.gce-sitemap-hero h1 { margin: 0; font-size: 32px; line-height: 1.5; }
.gce-sitemap-hero > .gce-container > p:last-child { max-width: 620px; margin: 18px auto 0; color: rgba(255,255,255,.88); font-size: 17px; line-height: 1.65; }
.gce-sitemap-content { padding: 78px 0 96px; background: #f8fbfa; }
.gce-sitemap-intro {  margin-bottom: 42px; }
.gce-sitemap-intro h2 { margin: 0 0 14px; color: var(--gce-gray-dark); font-size: 28px; line-height: 1.15; letter-spacing: -.035em; }
.gce-sitemap-intro h2 span{color:var(--gce-pink-dark);}
.gce-sitemap-intro > p:last-child { margin: 0; color: var(--gce-gray-text); font-size: 16px; line-height: 1.7; }
.gce-sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gce-sitemap-card { padding: 30px; background: #fff; border: 1px solid #dceae7; border-radius: 16px; box-shadow: 0 14px 34px rgba(26,74,68,.06); }
.gce-sitemap-card-wide { grid-column: span 3; }
.gce-sitemap-card h2 { margin: 0 0 20px; padding-bottom: 16px; border-bottom: 1px solid #e5efed; color: var(--gce-gray-dark); font-size: 19px; letter-spacing: -.02em; }
.gce-sitemap-card h2::before { content: ""; display: inline-block; width: 8px; height: 8px; margin: 0 10px 2px 0; border-radius: 50%; background: var(--gce-pink-dark); }
.gce-sitemap-card ul { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.gce-sitemap-card a { position: relative; display: flex; align-items: center; min-height: 38px; padding: 7px 26px 7px 0; color: #44545a; font-size: 14px; line-height: 1.45; transition: color .2s, transform .2s; }
.gce-sitemap-card a::after { content: "→"; position: absolute; right: 2px; color: var(--gce-teal-dark); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; }
.gce-sitemap-card a:hover { color: var(--gce-teal-dark); transform: translateX(3px); }
.gce-sitemap-card a:hover::after { opacity: 1; transform: translateX(0); }
.gce-sitemap-amounts { grid-template-columns: repeat(4, 1fr); gap: 6px 24px !important; }
.gce-sitemap-legal { grid-template-columns: repeat(4, 1fr); gap: 6px 24px !important; }
.gce-sitemap-help { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-top: 24px; padding: 34px 38px; color: #fff; background: #173f3c; border-radius: 16px; }
.gce-sitemap-help .gce-sitemap-eyebrow { color: #8dd4c7; }
.gce-sitemap-help h2 { margin: 0 0 8px; font-size: 27px; }
.gce-sitemap-help p:last-child { margin: 0; color: rgba(255,255,255,.76); font-size: 14px; }
.gce-sitemap-help-actions { display: flex; flex: none; gap: 12px; }
.gce-sitemap-help .gce-btn { min-width: 118px; }
.gce-sitemap-help .gce-btn-secondary { color: #fff; border-color: rgba(255,255,255,.46); }

@media (max-width: 900px) {
  .gce-sitemap-grid { grid-template-columns: 1fr 1fr; }
  .gce-sitemap-card-wide { grid-column: span 2; }
  .gce-sitemap-amounts { grid-template-columns: repeat(3, 1fr); }
  .gce-sitemap-legal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gce-sitemap-hero { padding: 62px 0 66px; }
  .gce-sitemap-content { padding: 54px 0 70px; }
  .gce-sitemap-grid { grid-template-columns: 1fr; }
  .gce-sitemap-card-wide { grid-column: auto; }
  .gce-sitemap-card { padding: 24px; }
  .gce-sitemap-amounts,
  .gce-sitemap-legal { grid-template-columns: 1fr 1fr; }
  .gce-sitemap-help { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .gce-sitemap-help-actions { width: 100%; }
  .gce-sitemap-help .gce-btn { flex: 1; }
}
@media (max-width: 390px) {
  .gce-sitemap-amounts,
  .gce-sitemap-legal { grid-template-columns: 1fr; }
  .gce-sitemap-help-actions { flex-direction: column; }
}
/* Sitemap page End*/