/* --- RESET --- */
body, h1, p, nav, a, section, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #333;
}

/* --- MENU --- */
.topbar {
  background: #61C5AA;
  padding: 15px 0;
  text-align: center;
}

.menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
  font-weight: bold;
}

/* --- HERO V2 --- */
.hero {
  background: #61C5AA;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
}

.hero-content {
  text-align: center;
  flex: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 300;
}

.hero-logo-wrapper {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 260px;
  height: auto;
}

/* --- INTRO --- */
.intro {
  padding: 40px 80px;
  font-size: 18px;
  line-height: 1.6;
}
