* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  position: relative;
  background: url("bg.jpg") center center / contain no-repeat black;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px;
  color: white;
  align-items: center;
}

h1 {
  font-size: 56px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.services {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  background: rgba(255,255,255,0.12);
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: 0.2s;
}

.btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateX(-4px);
}

.site {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.7;
}

/* MOBILNO */
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  h1 {
    font-size: 42px;
  }
}