* {
    box-sizing: border-box;
}

body {
    height: 100vh;
    /* width: 100vw; */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* font-family: sans-serif; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* overflow-x: hidden; */
  }

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    width: 100%;
}

.custom-logo {
    /* width: 139px;
    height: 46px; */
    width: 10em;
}

.nav-links-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

#active {
    /* color: #005D52; */
    color: #B4D033;
}

.nav-links-1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1em;
    /* margin-right: 2em; */
}

.nav-links-1 .nav-link {
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.nav-links-1 .nav-link:hover {
    cursor: pointer;
    text-decoration: none;
    /* color: #005D52; */
    color: white;
}

.nav-links-1 button {
    background-color: #B4D033;
    /* border: 1px solid black; */
    border: none;
    border-radius: 0.5em;
    /* padding: 0.5em;
    margin-top: 2em; */
}

.nav-links-2 {
    display: flex;
    flex-direction: row;
    /* gap: 1em; */
    /* margin-right: 2em; */
}

.nav-link {
    text-decoration: none;
    font-weight: 700;
    color: black;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.nav-links-2 .nav-link:hover {
    cursor: pointer;
    text-decoration: none;
    /* color: #005D52; */
    color: #B4D033;
}

/* Section One Styling */

.section-one {
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    align-items: center;
    background-color: #005D52;
    color: white;
    /* gap: 10em; */
    padding: 4em;
    width: 100%;
}

.container-1 {
    display: flex;
    flex-direction: column;
    width: 40em;
}

.header-one,
.header-two,
.header-three,
.header-four {
    border-bottom: 2px solid white;
    padding-bottom: 0.5em;
}

.first-paragraph,
.second-paragraph,
.third-paragraph {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center; */
    /* text-align: center; */
    /* width: 50em; */
    padding-top: 0.5em;
}

/* .container-2 {
    display: flex;
    flex-direction: column;
    width: 40em;
} */

ul {
    list-style-type: none;
    padding-left: 0;
    padding-bottom: 2em;
}

img {
    width: 40em;
}

/* Section Two Styling */

.section-two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
    /* margin: 2em; */
    /* padding: 4em; */
    padding: 4em 1em;
    width: 100%;
}

.section-two h2 {
    border-bottom: 2px solid black;
    padding-bottom: 0.5em;
    text-align: center;
    width: fit-content;
}

.section-two-container {
    display: flex;
    gap: 3em;
    max-width: 55em;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-two-container > div {
    flex: 1;
    min-width: 16em;
}

.section-two a {
    color: #005D52;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.section-two a:hover {
    color: #B4D033;
    text-decoration: none;
    font-weight: 700;
}

/* Section Three Styling */

.section-three {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
    /* margin: 2em; */
    /* padding: 4em; */
    padding: 4em 1em;
    width: 100%;
    background-color: #005D52;
    color: white;
}

.section-three h2 {
    border-bottom: 2px solid white;
    padding-bottom: 0.5em;
    text-align: center;
    width: fit-content;
    margin-bottom: 1em;
}

.section-three-container {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    gap: 3em;
    max-width: 55em;
    width: 100%;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.div-section-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5em;
}

.achievements-list li:last-child {
    margin-bottom: 0;
}
  

.achievements-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.75em;
}

.achievements-list li::before {
    /* content: ">"; */
    content: "›";
    position: absolute;
    left: 0;
    color: #B4D033;
    font-weight: bold;
    font-size: 1.2em;
}

.section-three img {
    width: 20em;
}

/* Footer Styling */

footer {
    background-color: #B4D033;
    padding: 1em 2em;
}

.footer-container {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.footer-inner-container {
    display: flex;
    flex-direction: column;
}

.footer-inner-container a {
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.footer-inner-container a:hover {
    color: white;
}

.footer-outer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-outer-container img {
    width: 10em;
    /* height: auto; */
}