:root {
  --navy: #243348;
  --steel: #5d6f85;
  --gold: #c79b5f;
  --text: #233142;
  --shadow: rgba(36, 51, 72, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 155, 95, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(93, 111, 133, 0.12), transparent 30%),
    linear-gradient(135deg, #f8f4ef 0%, #eef2f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.page {
  width: 100%;
  max-width: 900px; /* kisebb lett */
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow);
  border: 1px solid rgba(36, 51, 72, 0.08);
}

.top-line {
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--steel) 45%, var(--gold) 100%);
}

.text-panel {
  padding: 28px 30px 22px; /* csökkentve */
  text-align: center;
}

.company {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.message-block {
  max-width: 700px;
  margin: 0 auto;
}

.message {
  margin: 0;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}

.message.hu {
  font-size: clamp(1.6rem, 3vw, 2.3rem); /* kisebb */
}

.message.en {
  margin-top: 12px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); /* kisebb */
  color: #3f536b;
  font-weight: 600;
}

.divider {
  width: 110px;
  height: 3px;
  border-radius: 999px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.contact {
  margin-top: 14px;
}

.contact a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 51, 72, 0.06);
  border: 1px solid rgba(36, 51, 72, 0.10);
}

.image-panel {
  text-align: center;
  padding: 10px 20px 20px;
}

.image-panel img {
  max-width: 100%;
  max-height: 320px; /* ez szabályozza a méretet */
  width: auto;
  height: auto;
  display: inline-block;
  border-radius: 16px;
}

/* mobil */
@media (max-width: 860px) {
  body {
    padding: 14px;
    align-items: flex-start;
  }

  .page {
    max-width: 100%;
  }

  .text-panel {
    padding: 22px 16px 18px;
  }

  .message.hu {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  .message.en {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .image-panel {
    max-height: none; /* mobilon ne vágja */
  }

  .image-panel img {
    height: auto;
  }
}