body{
    font-family: 'Poppins', sans-serif;
    background: #ececec;
}

.box-area{
    width: 930px;
    height: 600px;
}
p{
    text-align: center;
}
p{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

h2{
    text-align: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        .right-box {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .container {
            display: flex;
            flex-direction: column; /* Stack columns vertically */
          }
          
          .column {
            padding: 20px;
            border: 1px solid #ccc;
          }



/* styles.css */

/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styling for the container */
.container {
    display: flex;
    align-items: stretch;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
}

/* Style the left section */
.left-section {
    flex: 1;
    padding: 20px;
    background-color: #f5f5f5;
}

/* Style the separator */
.separator {
    width: 2px; /* Adjust the width of the separator as needed */
    background-color: #ccc;
    margin: 0 20px;
}

/* Style the right section */
.right-section {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
}

.image {
    position: absolute;
    bottom: 0;
}