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

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    min-height: 100vh;
}

.hero-image {
    flex: 1;
    min-height: 100vh;
    background-image: url("image_2.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    max-width: 420px;
}

.cta-button {
    margin-top: 24px;
    display: inline-block;
    width: fit-content;
    padding: 16px 36px;
    border: 1.5px solid #1a1a1a;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 800px) {
    body { flex-direction: column; }
    .hero-image { min-height: 40vh; }
    .hero-content { padding: 40px 30px; }
    .hero-content h1 { font-size: 40px; }
}