/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #76a3ff; /* outer background like screenshot */
}

/* Side colored areas (purple + gray blocks) */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.page-bg__side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  background: #fff;
}
.page-bg__side--left { left: 0; }
.page-bg__side--right { right: 0; }

/* Middle purple band */
.page-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;           /* roughly where purple starts in screenshot */
  height: 220px;        /* purple band height */
  background: #848484;  /* purple */
}

/* Center wrapper like screenshot */
.wrap {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
}

/* Nav */
.nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav__link {
  text-decoration: none;
  font-weight: 700;
  color: #173b7a; /* blue-ish text */
  padding: 6px 10px;
  border-radius: 4px;
}
.nav__link:hover { background: rgba(23,59,122,.08); }
.nav__link.is-active { text-decoration: underline; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #1b1b1b;
  margin: 6px 0;
}

/* Hero */
.hero {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main layout */
.main { padding: 18px; }
.grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
}

.card {
  min-height: 420px;
}
.card__title {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .4px;
  color: #4a94af; /* green title */
  font-weight: 800;
}
.card p { margin: 0 0 12px; font-size: 14px; }

.card--right .card__img {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}
.card--right .card__img img {
  width: min(210px, 100%);
  height: auto;
  display: block;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(0,0,0,.08);
  background: #f3f3f3;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 16px 18px;
}
.footer__title {
  margin: 0 0 6px;
  font-size: 13px;
  color: #333;
}
.footer p {
  margin: 0;
  font-size: 13px;
  color: #333;
}

/* Responsive */
@media (max-width: 820px) {
  .page-bg__side { width: 20%; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card--right .card__img { justify-content: center; }
}

@media (max-width: 640px) {
  .header__inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
  .nav {
    width: 100%;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 10px 12px; }
  .hero { height: 200px; }
  .footer__inner { grid-template-columns: 1fr; }
  .page-bg::after { top: 140px; height: 180px; }
}
/* ===== OIKONOMIKA PAGE ===== */
.page-title{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .6px;
  font-weight: 800;
  color: #111;
}

.lead{
  margin: 0 0 14px;
  font-size: 14px;
  color: #333;
}

.card--wide{
  min-height: auto;
}

.docs{
  margin: 18px 0 0;
}

.docs__title{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .4px;
  color: #1f6b2b;
  font-weight: 800;
}

.docs__list{
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.docs__list li{
  margin: 8px 0;
}

.docs__link{
  display: inline-block;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding-bottom: 2px;
}

.docs__link:hover{
  border-bottom-color: rgba(0,0,0,.6);
}

.company-meta{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.12);
}

.company-meta__row{
  display: flex;
  gap: 8px;
  margin: 8px 0;
  font-weight: 800;
}

.company-meta__label{
  color: #111;
}

.company-meta__value{
  color: #111;
}
/* ===== CONTACT PAGE ===== */
.contact-block{
  margin-top: 8px;
  max-width: 520px;
}

.contact-block__title{
  margin: 18px 0 6px;
  font-size: 12px;
  letter-spacing: .5px;
  color: #111;
  font-weight: 800;
}

.contact-block__text{
  margin: 0;
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

.contact-link{
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.contact-link:hover{
  border-bottom-color: rgba(0,0,0,.6);
}