* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
}

p {
  text-align: justify;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(0,140,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  height: 40px;
  display: block;
}

/* HERO */
.hero {
  padding: 100px 0;
}

.hero-content {
  display: flex;
}

.hero-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}

.hero-title span {
  white-space: nowrap;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111;
}

.footer img {
  height: 35px;
}