* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0b0b0b;
  color: white;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)), url("logo.png");
  background-size: cover;
  background-position: center;
  padding: 30px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  color: #e50914;
  letter-spacing: 3px;
  font-size: 28px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a:hover {
  color: #e50914;
}

.hero-content {
  max-width: 700px;
  margin-top: 180px;
}

.hero-content h2 {
  font-size: 55px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 22px;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background: #e50914;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.section {
  padding: 80px 30px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #e50914;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #171717;
  padding: 25px;
  border-left: 4px solid #e50914;
}

.card h3 {
  margin-bottom: 10px;
}

.dark {
  background: #111;
  max-width: none;
  padding-left: 15%;
  padding-right: 15%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
}

input, textarea {
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  min-height: 120px;
}

button {
  background: #e50914;
  color: white;
  padding: 14px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 25px;
  background: #050505;
  color: #aaa;
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content h2 {
    font-size: 38px;
  }

  .hero-content {
    margin-top: 120px;
  }
}

.file-label {
  font-weight: bold;
  margin-top: 10px;
  color: #fff;
}

input[type="file"] {
  background: #171717;
  color: white;
  border: 1px solid #333;
  padding: 12px;
}

.contact-info {
  margin-top: 35px;
  background: #171717;
  padding: 25px;
  border-left: 4px solid #e50914;
  max-width: 600px;
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #e50914;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  color: #e50914;
}
