:root {
  --bg-dark: #101c24;
  --text-light: #fff;
  --text-muted: #aeb7be;
  --green: #2e7d1f;
  --button-green: #2e7d1f;
  --button-green-hover: #256617;
  --button-radius: 8px;
  --font-main: "Inter", Arial, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 80px 0 80px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.07);
}

.logo {
  height: 40px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.icon-btn,
.close-btn {
  font-size: 20px;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.contact-link {
  color: var(--text-light);
  text-decoration: underline;
  font-weight: 500;
}

.download-btn {
  background: var(--button-green);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  margin-left: 12px;
  display: inline-block;
}

.download-btn:hover {
  background: var(--button-green-hover);
}

main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 80px;
  min-height: 80vh;
}

.content {
  max-width: 540px;
  margin-top: 40px;
}

.media-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 2px solid #2e7d1f;
  color: #fff;
  border-radius: var(--button-radius);
  padding: 8px 16px;
  font-size: 18px;
  margin-bottom: 32px;
  text-decoration: none;
  gap: 12px;
}

.media-btn .arrow {
  background: var(--button-green);
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 20px;
  margin-left: 8px;
}

h1 {
  font-size: 64px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.subtitle {
  color: var(--text-muted);
  font-size: 22px;
  margin-bottom: 36px;
}

.download-btn.mobile {
  display: none;
  background: #fff;
  color: #101c24;
  font-weight: 500;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 14px 32px;
  font-size: 18px;
  align-items: center;
  gap: 10px;
}

.icon-download {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: no-repeat center/contain;
  margin-right: 8px;
  vertical-align: middle;
  font-size: 18px;
}
/* .icon-download-desk {
  display: none;
  background: #fff;
  color: #f1f4f5;
  font-weight: 500;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 14px 32px;
  font-size: 18px;
  align-items: center;
  gap: 10px;
} */

.graphic {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.graphic img {
  max-width: 480px;
  width: 100%;
  height: auto;
}

/* Responsive styles */
@media (max-width: 900px) {
  header,
  main {
    padding-left: 24px;
    padding-right: 24px;
  }
  h1 {
    font-size: 44px;
  }
  .graphic img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: row;
    align-items: flex-end;
    padding: 24px 16px 0 16px;
  }
  .header-right {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
  }
  main {
    flex-direction: column;
    padding: 32px 16px;
    align-items: flex-start;
  }
  .content {
    max-width: 100%;
    margin-top: 0;
  }
  .graphic {
    display: none;
  }
  .graphic img {
    max-width: 220px;
  }
  .download-btn.desktop {
    display: none;
  }
  .download-btn.mobile {
    display: flex;
    justify-content: center;
    width: 50%;
  }
  .contact-link {
    font-size: 16px;
  }
}
