﻿body {
    font-family: Arial, sans-serif;
}
.small-image {
    position: absolute;
    bottom: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 60px;
}

.right-section {
    text-align: initial; /* Justify the text */
    color: white;
    display: block;
    margin: auto;
    padding: 50px;
}

.circle-container {
    display: table-cell;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    margin: 0 auto; /* Center the div horizontally */
}

.circles {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    color: #7BA25C;
    font-size: 20px;
    line-height: 200px;
    background-color: white;
}
.section-container {
    display: flex;
}

.left-section {
    flex: 1;
    position: relative;
    width: 50%;
}

.right-section {
    flex: 1;
}

