body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f1115;
    color: white;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.logo {
    width: 180px;
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image img {
    width: 300px;
    max-width: 100%;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-text p {
    opacity: 0.8;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 200px;
    }
}