@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.split-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    align-items: center;
    gap: 40px;
}

/* Left Side Styling */
.left-side {
    flex: 1;
}

.left-side h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #111;
    margin-bottom: 20px;
}

.left-side h1 span {
    color: #e63946; /* Your brand red */
}

.left-side p {
    font-size: 1.2rem;
    color: #666;
}

/* Right Side Styling */
.right-side {
    flex: 1;
}

.right-side img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Fix for Mobile: Stack them on top of each other */
@media (max-width: 800px) {
    .split-container {
        flex-direction: column;
        text-align: center;
    }
    .left-side h1 {
        font-size: 2.5rem;
    }
}