

:root {
  --skgeo-header-bg: #014d43;
  --skgeo-text: #ffffff;
  --skgeo-accent: #13c8b1;
  --skgeo-accent-hover: #0fb39f;
  --skgeo-border: #d9f4ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.skgeo-header {
  width: 100%;
  background: var(--skgeo-header-bg);
  border-bottom: 1px solid var(--skgeo-border);
}

.skgeo-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 97px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 28px;
}

.skgeo-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.skgeo-logo img {
  display: block;
  height: 52px;
  width: auto;
}

.skgeo-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.skgeo-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
}

.skgeo-nav a {
  color: var(--skgeo-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.skgeo-nav a:hover {
  opacity: 0.8;
}

.skgeo-header-action {
  flex: 0 0 auto;
}

.skgeo-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 38px;
  padding: 0 18px;
  background: var(--skgeo-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.skgeo-btn-contact:hover {
  background: var(--skgeo-accent-hover);
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 1100px) {
  .skgeo-header-inner {
    gap: 20px;
    padding: 0 20px;
  }

  .skgeo-nav ul {
    gap: 20px;
  }

  .skgeo-nav a {
    font-size: 11px;
  }
}

/* Header */
@media (max-width: 860px) {
  .skgeo-header-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 16px;
  }

  .skgeo-logo {
    width: 100%;
    justify-content: center;
  }

  .skgeo-nav {
    width: 100%;
    order: 3;
  }

  .skgeo-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .skgeo-header-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}


/** 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: .7;
}


.skgeo-footer-menu {
  gap: 12px;
}

.skgeo-footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}

.skgeo-footer-menu a:hover {
  opacity: .7;
}


.skgeo-footer-contact {
  text-align: right;
  gap: 10px;
}

.skgeo-footer-address {
  font-size: 13px;
}

.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;
}

.skgeo-social:hover {
  background: #00c1a2;
  color: #fff;
}


.skgeo-footer-bottom {
  border-top: 1px solid #444;
  width: 100%;
}

/* Pályázatok oldal */

.skgeo-palyazatok{
    background:#dcdcdc;
    padding:80px 20px 120px;
    max-height: 2000px;
}

.skgeo-palyazatok-inner{
    max-width:1200px;
    margin:0 auto;
}

.skgeo-palyazatok h1{
    font-size:36px;
    font-weight:700;
    color:#083f3a;
    margin-bottom:60px;
    letter-spacing:0.04em;
}

.skgeo-palyazat-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.skgeo-palyazat h3{
    font-size:13px;
    color:#00a99d;
    font-weight:700;
    text-transform:uppercase;
    margin-top:22px;
    margin-bottom:6px;
}

.skgeo-palyazat p{
    font-size:14px;
    line-height:1.6;
    color:#222;
    margin:0;
}

.skgeo-dash-list{
    list-style:none;
    padding-left:0;
}

.skgeo-dash-list li{
    position:relative;
    padding-left:18px;
}

.skgeo-dash-list li::before{
    content:"-";
    position:absolute;
    left:0;
    color:#333;
}

@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;
  }
}

