* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

nav a {
    margin-left: 25px;
    font-size: 22px;
    color: white;
}

nav a:hover {
    color: #00ffcc;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
}

.hero img {
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 0 30px #00ffcc;
}

.text h1 {
    font-size: 55px;
}

.text p {
    margin-top: 15px;
    font-size: 20px;
    color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .hero img {
        width: 200px;
        margin-bottom: 30px;
    }

    header {
        padding: 20px;
    }

    .text h1 {
        font-size: 35px;
    }
}
