
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0c0c1d;
    color: #f5f5f5;
}
header {
    background-color: #0c0c1d;
    padding: 1.5em 2em;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3em;
    margin: 0;
    padding: 0;
}
nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}
.hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4em;
    gap: 3em;
    background: #0c0c1d;
}
.hero-text {
    max-width: 40%;
}
.hero-text h1 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: #ffe082;
}
.hero-text p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    color: #dddddd;
}
.button {
    display: inline-block;
    background: linear-gradient(to right, #ffa726, #fb8c00);
    color: #1e1e1e;
    padding: 0.8em 1.6em;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}
.hero-image img {
    max-width: 320px;
    border-radius: 12px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 2em 1em;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-image img {
    max-width: 80%;
  }
  nav ul {
    flex-direction: column;
    gap: 1em;
  }
}