* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    background-color: #0b2e4e;
    color: #fff;
}

/* HERO SECTION */
.hero {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    background: linear-gradient(90deg, #000 50%, #111 50%);
    border-radius: 12px;
    overflow: hidden;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    padding: 60px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-content h1 span {
    color: #e63946;
}

.hero-content p {
    margin: 25px 0;
    font-size: 16px;
    color: #ccc;
    max-width: 400px;
}

.hero-content button {
    background: linear-gradient(90deg, #ff6a00, #e63946);
    border: none;
    padding: 14px 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.hero-content button:hover {
    transform: scale(1.05);
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: 20px auto;
    }
}
