* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  color: #1E1E1E;
  background: #f2f2f2;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  align-items: center;
}

.logo {
  font-weight: 700;
  
}

.hero {
  background: linear-gradient(
    270deg,
    #D93A2F,
    #F2B705,
    #D93A2F
  );
  background-size: 600% 600%;
  animation: gradientMove 12s ease infinite;

  color: white;
  padding: 90px 20px;
  text-align: center;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 2.4rem;
}

.hero p {
  margin: 16px 0;
  opacity: 0.9;
}

/* BUTTONS */
.btn {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-primary {
  background: #1E1E1E;
  color: white;
}

.btn-outline {
  border: 2px solid #1E1E1E;
  color: #1E1E1E;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section.light {
  background: #F5F5F5;
}

.section-text {
  max-width: 700px;
  margin: auto;
  color: #5A5A5A;
}

/* BRAND LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 32px;   /* Change this number to resize */
  height: auto;
  object-fit: contain;
}

/* CARDS */
.cards {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* VIDEO */
.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  max-width: 720px;
  height: 400px;
  border-radius: 12px;
}

/* LIST */
.list {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.list li {
  margin: 12px 0;
}

/* CTA */
.cta {
  background: #3FA64A;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
}

.socials a {
  margin: 0 10px;
  text-decoration: none;
  color: #5A5A5A;
}

/* REGISTER PAGE */
.register-hero {
  background: linear-gradient(135deg, #D93A2F, #F2B705);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 24px 24px 0 0;
}

.register-hero h1 {
  font-size: 2.2rem;
}

.register-hero p {
  margin-top: 10px;
  opacity: 0.9;
}

.register-card {
  max-width: 420px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.input-group input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.input-group input:focus {
  outline: none;
  border-color: #3FA64A;
}

/* Full width button */
.btn-full {
  width: 100%;
}
