:root {
    --bs-body-color: #181A1E;
    --bs-body-bg: #ffffff;
    --bs-primary: #1d4a94;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    color: var(--bs-body-color);
    background: rgb(0 102 101 / 12%)
}

.container {
    max-width: 1200px;
    width: 100%;
}

.main {
    position: relative;
    min-height: 100vh;
}

.headerSection {
    position: relative;
    flex-shrink: 0;
}

.contentSection {
    position: relative;
    flex-grow: 1;
}

.icon {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
}

.heading {
    font-size: 44px;
    font-weight: 700;
    color: #006665;
}

/* Responsive Design */
@media only screen and (max-width: 556px) {
    .heading {
        font-size: 36px;
    }
}