:root {
  --skgeo-bg-deep: #003f3a;
  --skgeo-accent: #12cfc0;
  --skgeo-accent-hover: #0db2a5;
  --skgeo-text: #ffffff;
  --skgeo-max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--skgeo-bg-deep);
  color: var(--skgeo-text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.about-container {
  width: min(100% - 48px, var(--skgeo-max-width));
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* =========================================
   KÖZÖS BLOKK: HEADER + SECTION1 + SECTION2
========================================= */
.about-top-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.about-top_container {
  background: url("../images/bg_section1.png") center top / cover no-repeat;
}

/* zöldes overlay */
.about-top-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 86, 79, 0.88) 0%, rgba(4, 86, 79, 0.78) 38%, rgba(0, 42, 39, 0.70) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 35, 32, 0.18) 100%);
  pointer-events: none;
}

.about-top-wrap__overlay {
  display: none;
}

.about-top-wrap:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 340px;
  height: 720px;
  pointer-events: none;
  background-image: url(../images/dekorelem_600.png);
  background-size: cover;
  opacity: 0.5;
}
.about-header,
.about-section,
.about-section--hero,
.about-section--intro {
  position: relative;
  z-index: 5;
  background: transparent !important;
  background-color: transparent !important;
}

/* HEADER */
.about-header {
  padding-top: 28px;
}

.about-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-logo {
  flex: 0 0 auto;
}

.about-logo img {
  width: 150px;
  height: auto;
}

.about-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.about-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-nav a {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.about-nav a:hover {
  color: var(--skgeo-accent);
}

.about-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 6px 10px 5px;
  border-radius: 9px;
  background: var(--skgeo-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-contact-btn:hover {
  background: var(--skgeo-accent-hover);
  transform: translateY(-1px);
}

/* SECTION1 */
.about-section--hero {
  padding-top: 92px;
  padding-bottom: 150px;
}

.about-hero-content {
  max-width: 810px;
}

.about-hero-content h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 400;
  color: #fff;
}

.about-hero-content p {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: #fff;
}

.about-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  padding: 5px 22px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.about-outline-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* SECTION2 */
.about-section--intro {
  padding-top: 90px;
  padding-bottom: 120px;
}

.about-intro-content {
  max-width: 930px;
}

.about-intro-content h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

.about-intro-content p {
  margin: 0;
  max-width: 980px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 200;
  color: #fff;
}

/* SECTION3+ helye */
.about-section--light,
.about-section--dark {
  position: relative;
  padding: 100px 0;
}

.about-section--light {
  background: #ffffff;
  color: #111111;
}

.about-section--dark {
  background: #001b18;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .about-nav ul {
    gap: 22px;
  }

  .about-top-wrap__globe {
    width: 470px;
    height: 470px;
    right: -130px;
    bottom: 0;
  }
}

@media (max-width: 991px) {
  .about-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .about-nav {
    order: 3;
    width: 100%;
  }

  .about-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .about-section--hero {
    padding-top: 72px;
    padding-bottom: 110px;
  }

  .about-section--intro {
    padding-top: 56px;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .about-container {
    width: min(100% - 32px, var(--skgeo-max-width));
  }

  .about-header {
    padding-top: 20px;
  }

  .about-logo img {
    width: 128px;
  }

  .about-nav ul {
    gap: 12px 18px;
  }

  .about-nav a {
    font-size: 11px;
  }

  .about-contact-btn {
    min-width: 96px;
    height: 32px;
    padding: 0 14px;
    font-size: 10px;
  }

  .about-section--hero {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .about-section--intro {
    padding-top: 38px;
    padding-bottom: 70px;
  }

  .about-hero-content h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  .about-hero-content p,
  .about-intro-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-intro-content h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .about-top-wrap__globe {
    width: 320px;
    height: 320px;
    right: -90px;
    bottom: 20px;
    opacity: 0.12;
  }
}

/* =========================================
   SECTION 3 - MIBEN VAGYUNK A PARTNERE?
========================================= */
.about-section--partners {
  background: #efefef;
  padding: 96px 0 110px;
}

.about-partners {
  max-width: 1180px;
}

.about-partners__title {
  margin: 0 0 54px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  color: #003f4a;
  letter-spacing: 0.01em;
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 54px;
  align-items: start;
}

.about-partner-card h3 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  color: #06b8a6;
  letter-spacing: 0.01em;
}

.about-partner-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #072f36;
}

.about-partner-card strong {
  font-weight: 800;
}

.about-partners__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.about-partners__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 7px 22px;
  border-radius: 12px;
  background: #003f4a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-partners__cta:hover {
  background: #005663;
  transform: translateY(-1px);
}

@media (max-width: 1199px) {
  .about-partners__grid {
    column-gap: 36px;
    row-gap: 44px;
  }
}

@media (max-width: 991px) {
  .about-section--partners {
    padding: 78px 0 88px;
  }

  .about-partners__title {
    margin-bottom: 40px;
  }

  .about-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 36px;
  }

  .about-partners__cta-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .about-section--partners {
    padding: 56px 0 64px;
  }

  .about-partners__title {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .about-partners__grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .about-partner-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .about-partner-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-partners__cta-wrap {
    justify-content: flex-start;
  }
}

.about-section.about-section--partners {
  background: #EFEFEF  !important;
}

/* =========================================
   SECTION 4 - NAGYOBB PROJEKTJEINK
========================================= */
.about-section--projects {
  background: #12ad9a;
  padding: 86px 0 92px;
}

.about-projects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 426px;
  align-items: center;
  column-gap: 90px;
}

.about-projects__content {
  max-width: 520px;
}

.about-projects__title {
  margin: 0 0 28px;
  font-size: clamp(34px, 3.2vw, 39px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: #003f4a;
  letter-spacing: 0.01em;
}

.about-projects__text {
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: #ffffff;
  max-width: 100!;
}

.about-projects__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 7px 22px;
  border-radius: 12px;
  background: #003f4a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-projects__cta:hover {
  background: #002f38;
  transform: translateY(-1px);
}

.about-projects__logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-projects__logos img {
  width: 426px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .about-section--projects {
    padding: 70px 0 76px;
  }

  .about-projects {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .about-projects__content {
    max-width: 100%;
  }

  .about-projects__text {
    max-width: 100%;
  }

  .about-projects__logos {
    justify-content: flex-start;
  }
}

/* Mobil */
@media (max-width: 767px) {
  .about-section--projects {
    padding: 54px 0 60px;
  }

  .about-projects {
    row-gap: 30px;
  }

  .about-projects__title {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .about-projects__text {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.65;
  }

  .about-projects__cta {
    min-width: 148px;
    height: 40px;
    font-size: 11px;
    padding: 0 18px;
  }

  .about-projects__logos img {
    width: 100%;
    max-width: 426px;
  }
}

.about-section.about-section--projects {
  background: #0C9F85 !important;
}




/* =========================================
   SECTION 5 - SAJÁT ERŐFORRÁS
========================================= */
.about-section--resources {
  background: #efefef;
}

.about-resources {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  align-items: stretch;
}

.about-resources__image {
  min-width: 717px;
  min-height: 450px;
}

.about-resources__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-resources__content-wrap {
  display: flex;
  align-items: center;
  background: #efefef;
}

.about-resources__content {
  max-width: 780px;
  padding: 70px 80px 70px 56px;
}

.about-resources__title {
  margin: 0 0 34px;
  font-size: clamp(34px, 3.2vw, 39px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: #11b5a3;
  letter-spacing: 0.01em;
}

.about-resources__text {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #1a2a2d;
}

.about-resources__text strong {
  font-weight: 800;
}

/* Tablet */
@media (max-width: 1199px) {
  .about-resources {
    grid-template-columns: 480px minmax(0, 1fr);
  }

  .about-resources__content {
    padding: 56px 48px 56px 42px;
  }
}

@media (max-width: 991px) {
  .about-resources {
    grid-template-columns: 1fr;
  }

  .about-resources__image {
    min-height: auto;
  }

  .about-resources__image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-resources__content {
    max-width: 100%;
    padding: 48px 32px 52px;
  }

  .about-resources__text {
    max-width: 100%;
  }
}

/* Mobil */
@media (max-width: 767px) {
  .about-resources__content {
    padding: 38px 20px 42px;
  }

  .about-resources__title {
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 1.12;
  }

  .about-resources__text {
    font-size: 15px;
    line-height: 1.7;
  }
}







/** Footer */
.skgeo-footer {
  background: #000;
  color: #fff;
  padding-top: 70px;
}

.skgeo-footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.skgeo-footer-col {
  display: flex;
  flex-direction: column;
}

.skgeo-footer-left {
  max-width: 260px;
}

.skgeo-footer-logo {
  width: 150px;
  margin-bottom: 30px;
}

.skgeo-footer-legal a {
  display: block;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 6px;
}

.skgeo-footer-legal a:hover {
  opacity: 0.7;
}

.skgeo-footer-menu {
  gap: 12px;
}

.skgeo-footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.skgeo-footer-menu a:hover {
  opacity: 0.7;
}

.skgeo-footer-contact {
  text-align: right;
  gap: 10px;
}

.skgeo-footer-address,
.skgeo-footer-phone,
.skgeo-footer-email {
  font-size: 13px;
}

.skgeo-footer-social {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.skgeo-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.skgeo-social:hover {
  background: #00c1a2;
  color: #fff;
}

.skgeo-footer-bottom {
  border-top: 1px solid #444;
  width: 100%;
}

@media (max-width: 991px) {
  .skgeo-footer-inner {
    flex-direction: column;
    gap: 36px;
  }

  .skgeo-footer-contact {
    text-align: left;
  }

  .skgeo-footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 768px){
  .skgeo-footer-logo {
    margin: 0 auto;
  }
  .skgeo-footer-left {
    max-width: none;
  }
  .skgeo-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .skgeo-footer-contact {
    text-align: center;
  }
  .skgeo-footer-social {
    justify-content: center;
  }
}

