
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fffdf9;
  color: #000;
}

header {
  padding: 30px 50px;
}

.logo {
  font-size: 1.5rem;
  line-height: 1;
}

.logo .bold {
  font-weight: 700;
  color: #f2b705;
  text-transform: uppercase;
}

.logo .light {
  font-weight: 400;
  color: #f2b705;
  text-transform: lowercase;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 0.9rem;
  color: #f2b705;
  margin-top: 5px;
}

main {
  padding: 0 50px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.hero .blue {
  color: #3559E0;
}

.hero .pink {
  color: #e8689c;
}

.tagline {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #222;
}

.tags {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.tag {
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid;
  font-weight: 500;
}

.green {
  border-color: #27ae60;
  color: #27ae60;
}

.pink {
  border-color: #e8689c;
  color: #e8689c;
}

.yellow {
  border-color: #f2b705;
  color: #f2b705;
}

.curve-arrow {
  margin-top: 40px;
}

.footer-links {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  font-weight: 700;
}

.footer-links a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}
