body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    margin-left: 1in;
    margin-right: 1in;

}

#footer {
    margin: auto;
    text-align: center;
    margin-top: 1in;
 }

 #header {
    margin: auto;
    text-align: left;
 }


 .header-links {
     position: sticky;
     top: 0;
     background-color: white;
 }



h1 {
    color: #54B595;
    text-align: center;
    margin-bottom: 20px;
}

 h3 {
    color: #54B595;
    text-align: left;
    margin-bottom: 20px;
    margin-left: 5px;
}

h4 {

    color: #090909;
    margin-bottom: 10px;
    text-align: left;
}

.column {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
}

/* Flex Container */
#content-container, #main-content, .impact-columns {
    display: flex;
    justify-content: space-around;
    margin: 20px;
}

/* Impact Column Styling */
.impact-column {
    text-align: center;
    flex-basis: 30%;
}

/* Circle Styling for Various Elements */
.impact-circle, .detail-circle {
    background-color: #54B595; /* Soft Green */
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
}

.impact-circle-blue {
    background-color: #54a0b5;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
}

/* List Styling */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #ffffff;
    color: #333;
    /* padding: 8px; */
    /* margin-bottom: 1px; */
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 3px;
}

li.li-level2 {
    margin-left: 60px;
}

/* Form Styling */
/*
form {
    background-color: #ffffff;
    padding: 20px;
    margin: auto;
    width: 50%;
    max-width: 500px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
    text-align: center;
}*/

.navigation {
    background-color: #ffffff;
    padding: 20px;
    margin: auto;
    width: 50%; /* Wider Form */
    max-width: 500px; /* Maximum width */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
    text-align: center;
}

label {
    color: #0D6647; /* Dark Green */
}

input[type=text], input[type=password], input[type=submit] {
    display: block;
    margin: 10px auto; /* Centered with auto margin */
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #ddd;
    width: 80%; /* Adjust as needed */
}

input[type=submit] {
    background-color: #54B595;
    color: white;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #3079D3; /* Bright Blue */
}


/* Image styling */


img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.header-links img {
    max-width: 100px; /* Increase logo size */
}

@media (max-width: 768px) {
    #content-container, #main-content, .impact-columns {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Link formatting */
a {
    color: #54B595; /* Soft Green */
    text-decoration: underline; /* Ensure underline is applied */
}

.header-links {
    display: flex;
    align-items: center;
}
.header-links a {
    margin-right: 10px; /* Adjust spacing between links */
    color: black; /* Set text color to black */
    text-decoration: none;
}


a:hover {
    color: green;
}

a.active_page {
    font-weight: bold;
    text-decoration: underline; /* Ensure underline is applied */
}


/* Table formatting */
table {
    border-collapse: collapse;
    margin: auto;
    width: 80%;
    background-color: #fff;
}

th, td {
    border: 1px solid #fff;
    text-align: left;
    padding: 8px;
    white-space: nowrap;
}

th {
    background-color: #54B595;
    color: white;
    font-weight: bold;
    text-align: left !important;

}


.form-container {
    display: flex;
}

.form-column {
    flex: 1;
    padding: 10px;
}

.button {
    background-color: #54B595;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    table {
        width: 100%;
    }
}



.impact-circle, .impact-circle-blue {
    background-color: #54B595;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold;
}

.impact-circle-blue {
    background-color: #54a0b5;
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.top-right-image {
    width: 70px; /* Adjust the size as needed */
    height: auto;
    float: right;
    margin-left: 0px; /* Space between the image and the title */
    border-radius: 0%; /* Optional: makes the image circular */
}


.row {
    display: flex;

}
.col-md-4 {
    display: flex;
    flex: 1 0 auto; /* Flex grow, flex shrink, flex basis */
}
.card {
    flex: 1; /* Allows the card to grow and fill the available space */
    display: flex;
    flex-direction: column; /* Stacks card content vertically */
}
.card-body {
    flex: 1; /* Allows body to expand */
    display: flex;
    flex-direction: column; /* Stacks card body content vertically */
    align-items: center; /* Aligns content in the center horizontally */
}
.card-title {
    text-align: center; /* Ensures title is centered */
    margin-bottom: 1rem; /* Provides consistent spacing below the title */
}
ul {
    text-align: left;
}
.top-right-image {
    width: 70px;
    height: auto;
    margin: 0 auto; /* Ensures the image is centered horizontally */
    display: block;
}
.text-content, .image-content {
    flex: 1;
}
.text-content ul {
    text-align: left; /* Ensures list in the first and third box are left-aligned */
    padding-inline-start: 0; /* Removes the default padding */
}
.text-content ul li {
    list-style-type: none; /* Removes the default list bullet */
}
.image-content {

    display: flex;
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
}
.impact-circle, .impact-circle-blue {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Ensures the circle is centered horizontally */
    font-size: 24px;
    line-height: 1.2;
}

#button {
    background-color: #54B595;
    color: white;
    border: none;
    cursor: pointer;
    display: block;
    margin: 10px auto; /* Centered with auto margin */
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #ddd;
    width: 80%; /* Adjust as needed */
}

p, img {
color: #9D2F73; /* Deep Pink */
text-align: center; /* Centered Text */
display: block;
margin-top: 20px;
}
