@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}
.left-section {
    width: 50%;
    background: #ce0808;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 40px;
    padding-left: 60px;
}
.right-section {
    width: 50%;
    background: url('hswebsite.jpg') center center no-repeat;
    background-size: cover;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 80%;
}
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    .left-section, .right-section {
        width: 100%;
        height: 50vh;
    }
    .left-section {
        padding: 20px;
        align-items: flex-start;
        text-align: left;
        padding-left: 30px;
    }
    p {
        font-size: 1em;
        max-width: 90%;
    }
}
