/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; vertical-align: middle; display: inline-block; }

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

p { margin-top: 0; margin-bottom: 10px; }
a { color: #3898ec; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Hero Section ===== */
.hero {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.hero-image {
  box-shadow: 0 4px 24px rgba(150, 163, 181, 0.08);
}

.hero-text {
  margin-bottom: 24px;
}

.hero-links {
  margin-top: auto;
  margin-bottom: 44px;
}

/* ===== Responsive: Tablet ===== */
@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

/* ===== Responsive: Mobile ===== */
@media screen and (max-width: 767px) {
  .hero {
    padding: 60px 15px;
  }
}

/* ===== Responsive: Small Mobile ===== */
@media screen and (max-width: 479px) {
  .container {
    max-width: none;
  }
}
