* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fffaf0;
  color: #222;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  max-width: 1050px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.logo {
  max-width: 520px;
  width: 100%;
  margin-bottom: 20px;
}

h1 {
  font-size: 44px;
  color: #176b20;
  margin-bottom: 18px;
}

.intro {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 20px;
  line-height: 1.6;
}

.launch {
  font-size: 21px;
  color: #0b5f16;
  font-weight: bold;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  margin-bottom: 35px;
  font-weight: bold;
}

.countries {
  margin-bottom: 30px;
}

.countries h2 {
  color: #176b20;
  margin-bottom: 12px;
}

.countries p {
  font-size: 18px;
  line-height: 1.8;
}

.contact {
  background: #ffffff;
  display: inline-block;
  padding: 22px 40px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.contact h3 {
  color: #176b20;
  margin-bottom: 8px;
}

footer {
  background: #0b5f16;
  color: white;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 34px;
  }

  .intro {
    font-size: 18px;
  }
}