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

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    height: 100vh;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    display: flex;
    width: 100%;
}

.left {
    background-color: #004b2d;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd;
    padding: 20px;
}

.left img {
    margin-bottom: 50px;
    object-fit: contain;
    height: auto;
}

.right {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

.right h1 {
    font-size: 30px;
    margin-bottom: 20px;
    padding: 0 140px 0px 0;
    color: #004b2d;
    font-weight: 500;
    line-height: 40px;
}

.right h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 200;
}

.right p {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 300;
}

.right a {
    color: black;
    text-decoration: none;
}

.right a:hover {
    text-decoration: none;
}

.right hr {
    margin: 20px 0 40px 0;
    width: 100%;
    border: none;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .right {
        width: 100%;
        padding: 30px 20px;
    }
}

@media(max-width:1024px){
    .left img {
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .right hr {
        margin: 10px 0 30px 0;
    }

    .right h1 {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0 0px 0px 0;
        color: #004b2d;
        line-height: 35px;
    }

}