html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  background: #f94144;
  padding: 20px;
  text-align: center;
  position: relative;
}

nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

header img.logo {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 150px;
  height: auto;
}

h1 {
  margin: 20px 0 10px;
  font-size: 2.5rem;
  color: #fff;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero button {
  padding: 15px 30px;
  font-size: 1rem;
  background: #f3722c;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #f94144;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.styles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.styles div {
  background: #f8961e;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

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

input, textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button.submit {
  width: fit-content;
  padding: 10px 20px;
  background: #f3722c;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #000;
  color: #fff;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

footer a {
  color: #ffa726;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
