* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
}

.main-div {
    display: flex;
    width: 100%;
    height: 700px;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}

.left-div {
    width: 45%;
    height: 100%;
}

.left-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-div {
    width: 55%;
    background-color: #102A31;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.heading h1 {
    color: #fff;
    font-weight: normal;
    font-size: 18px;
}

.subheading h1 {
    color: #fff;
    font-weight: normal;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 7.5px;
}

.paragraph p {
    color: #ccc;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5rem;
    text-align: justify;
    margin-bottom: 10px;
}

.learn-more {
    width: 150px;
    font-size: 14px;
    font-weight: 500;
    height: 45px;
    background-color: #73CED0;
    color: black;
    border: none;
    border-radius: 10px;
    transition: border-radius 0.3s;
    cursor: pointer;
}

.learn-more:hover {
    border-radius: 0;
}

/* Responsive Design */
/* @media (max-width: 768px) {*/
/*    .container {*/
/*        flex-direction: column;*/
/*    }*/

/*    .left-div, .right-div {*/
/*        width: 100%;*/
/*        height: auto;*/
/*    }*/

/*    .subheading h1, .paragraph p {*/
/*        font-size: 18px;*/
/*    }*/

/*    .paragraph p {*/
/*        font-size: 16px;*/
/*    }*/
/*} */
