body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: Verdana, sans-serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  body {
    background-image: url(../akku/accu.webp);
  }
}

@media (min-width: 769px) {
  body {
    background-image: url(../akku/akku.webp);
  }
}

h1, h2, h3 {
  line-height: 20px;
  margin-top: 0;
  font-weight: 700;
  color: #000;
  font-size: 12px;
}

h1 { margin-bottom: 0; }
h2, h3 { margin-bottom: 1em; }

.image-block, .text-block {
  line-height: 1.6;
  color: #333;
  font-size: 12px;
}

.wrapper {
  max-width: 811px;
  margin: 0 auto;
  background-color: #fff;
}

.responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  gap: 20px;
}

.image-block {
  flex: 1 1 300px;
}

.image-block figure {
  margin-bottom: 30px;
}

.image-block figure:last-child {
  margin-bottom: 0;
}

.text-block {
  flex: 2 1 400px;
}

/* ============================================================
   MENÜ – CORPORATE BLUE + AAA PASZTELL ALMENÜ
   ============================================================ */

.horizontalcssmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  background: #004a8f; /* corporate blue */
  align-items: stretch;

  /* ---- KÉK CSÍK JAVÍTÁS ---- */
  border-top: 1px solid #fff !important;
}

.horizontalcssmenu ul li {
  flex: 1 1 0;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}

.horizontalcssmenu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font: bold 12px Verdana, sans-serif;
  border-right: 1px solid #fff;
  background: #004a8f;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover főmenü */
.horizontalcssmenu ul li a:hover {
  background: #0a6ccf;
  color: #ffffff;
}

/* Almenü */
.horizontalcssmenu ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 999;
  background: #689fce; /* AAA pasztell */
  border: 1px solid #fff;
}

.horizontalcssmenu ul li:hover > ul,
.horizontalcssmenu ul li ul li,
.horizontalcssmenu ul li:focus-within > ul {
  display: block;
}

.horizontalcssmenu ul li ul li a {
  padding: 10px 12px;
  font-size: 12px;
  background: #689fce; /* AAA */
  color: #ffffff;
  border-bottom: 1px solid #fff;
  text-align: left !important;
  display: block !important;
  justify-content: normal !important;
  align-items: normal !important;
}

/* Hover almenü */
.horizontalcssmenu ul li ul li a:hover {
  background: #b5d4ef;
  color: #000000;
}

/* Aktív almenü elem */
.horizontalcssmenu ul li ul li a.active {
  background: #b5d4ef;
  color: #000000;
}

/* ============================================================
   MOBIL MENÜ – CORPORATE + AAA
   ============================================================ */

@media (max-width: 768px) {

  body {
    background-image: url(../akku/accu.webp);
  }

  .horizontalcssmenu ul {
    flex-direction: column;
    background: #004a8f;
  }

  .horizontalcssmenu ul li {
    flex: none;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    display: block;
    position: static;
  }

  .horizontalcssmenu ul li a {
    padding: 8px 12px;
    color: #ffffff;
    background: #004a8f;
    border-right: none;
    width: auto;
    white-space: normal;
  }

  .horizontalcssmenu ul li a:hover {
    background: #0a6ccf;
    color: #ffffff;
  }

  .horizontalcssmenu ul li ul {
    position: static;
    display: none;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: 0;
    background: #689fce;
  }

  .horizontalcssmenu ul li ul li a {
    background: #689fce;
    color: #ffffff;
  }

  .horizontalcssmenu ul li ul li a:hover {
    background: #b5d4ef;
    color: #000000;
  }

  #cssmenu1 > li > ul {
    display: none;
    position: absolute;
    left: -9999px;
  }

  #cssmenu1 > li:focus-within > ul,
  #cssmenu1 > li:hover > ul,
  .horizontalcssmenu ul li:focus-within > ul,
  .horizontalcssmenu ul li:hover > ul {
    display: block;
    position: static;
    left: auto;
    height: auto;
    overflow: visible;
  }

  #cssmenu1 li.open > ul,
  .horizontalcssmenu ul li:hover > ul {
    display: block;
  }

  .main-content {
    flex-direction: column;
  }
}