* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #2563eb;
}

.subtext {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1e4fd6;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }
}
