* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1529634896201-8fca1d40a0c4")
    center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  color: gold;
}

.tagline {
  font-size: 1.4rem;
  margin: 10px 0;
}

.desc {
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
}

.hero-content button {
  background: darkred;
  color: gold;
  border: none;
  padding: 14px 35px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
}

.hero-content button:hover {
  background: gold;
  color: darkred;
}

/* TRUST */
.trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
  background: #f8f8f8;
  flex-wrap: wrap;
}

.trust-box {
  background: #fff;
  border-left: 5px solid darkred;
  padding: 20px;
  width: 260px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ABOUT */
.about {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.about-text {
  max-width: 500px;
}

.about img {
  width: 350px;
  border-radius: 10px;
}

/* REGISTER */
.register {
  background: linear-gradient(to right, darkred, gold);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.register-btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: darkred;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 15px;
}
