body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #f1f1f1;
    scroll-behavior: smooth;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #111;
}

.logo {
    width: 120px;
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
    background: linear-gradient(90deg, #ff6a00, #f1f1f1, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.3em;
}

.section, .about, .newsletter {
    padding: 100px 20px;
    text-align: center;
}

.section h2, .about h3, .newsletter h3 {
    font-size: 2em;
    color: #ffae42;
}

.newsletter input {
    padding: 12px;
    margin-right: 10px;
    width: 300px;
    font-size: 1em;
}

.newsletter button {
    padding: 12px 24px;
    font-size: 1em;
    cursor: pointer;
    background: #ff6a00;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #111;
    font-size: 1.1em;
}