* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(135deg, #0f3d22, #1f5b32);
  color: #fff7dc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  padding: max(30px, env(safe-area-inset-top)) max(30px, env(safe-area-inset-right)) max(30px, env(safe-area-inset-bottom)) max(30px, env(safe-area-inset-left));
}

.container {
  width: 100%;
  max-width: 1100px;
  background: #fff7dc;
  color: #173f25;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.left {
  background: #123f24;
  padding: 70px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff7dc;
  color: #123f24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 35px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.left h1 {
  font-size: 58px;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff7dc;
}

.left p {
  font-size: 21px;
  line-height: 1.5;
  color: #f3e8c4;
  max-width: 480px;
}

.right {
  padding: 70px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff7dc;
}

.tag {
  display: inline-block;
  background: #1f5b32;
  color: #fff7dc;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
  width: fit-content;
}

.right h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #123f24;
}

.right p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #31523a;
}

.info {
  display: grid;
  gap: 16px;
  margin-bottom: 35px;
}

.info-card {
  background: #f2e8c9;
  border-left: 6px solid #1f5b32;
  padding: 18px;
  border-radius: 14px;
  font-size: 17px;
  word-wrap: break-word;
  font-style: normal;
}

.info-card a {
  color: #123f24;
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: #123f24;
  color: #fff7dc;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
  width: fit-content;
  min-height: 48px;
}

.button:hover,
.button:focus-visible {
  background: #1f5b32;
  transform: translateY(-2px);
  outline: none;
}

footer {
  background: #0d2f1b;
  color: #f3e8c4;
  text-align: center;
  padding: 22px;
  font-size: 15px;
}

@media (max-width: 850px) {
  body {
    padding: 16px;
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  }

  .container {
    border-radius: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .left,
  .right {
    padding: 45px 30px;
  }

  .left h1 {
    font-size: 44px;
  }

  .right h2 {
    font-size: 34px;
  }

  .logo-circle {
    width: 170px;
    height: 170px;
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .container {
    border-radius: 18px;
  }

  .left,
  .right {
    padding: 36px 22px;
  }

  .left h1 {
    font-size: 36px;
  }

  .left p {
    font-size: 17px;
  }

  .right h2 {
    font-size: 28px;
  }

  .right p {
    font-size: 16px;
  }

  .tag {
    font-size: 14px;
    padding: 8px 14px;
  }

  .info-card {
    font-size: 15px;
    padding: 16px;
  }

  .logo-circle {
    width: 140px;
    height: 140px;
    font-size: 28px;
    margin-bottom: 24px;
  }

  .button {
    width: 100%;
    padding: 16px 20px;
    font-size: 17px;
  }

  footer {
    font-size: 13px;
    padding: 18px 14px;
  }
}

@media (max-width: 380px) {
  .left,
  .right {
    padding: 28px 18px;
  }

  .left h1 {
    font-size: 30px;
  }

  .right h2 {
    font-size: 24px;
  }

  .logo-circle {
    width: 120px;
    height: 120px;
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
