* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-image: url(background-image.svg);
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden;
}

.content {
    padding: 11px;
}

.space-between {
    margin-top: 30px;
}

.navbar-light {
    background-color: #e2e2e2 !important;
}

.navbar-nav .nav-link {
    color: #09499c !important;
    float: right;
    font-weight: 500 !important;
    padding: 5px 8px !important; 
}

.navbar-nav .nav-link:hover {
    color: black !important;
    font-weight: 700 !important;
}

.two-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.one-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh; /* Make the section take up most of the screen height */
    padding: 0 20px;
}

.one-content {
    max-width: 900px; /* Limit the width of the text for readability */
}

.mission-statement {
    font-size: 1.7rem; 
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.main-headline {
    font-size: 5rem; 
    font-weight: 900; 
    line-height: 1.1;
    margin: 0;
}

/* Highlighted Text Styling */
.highlight {
    color: #2ca7df; 
}

.content-80-center {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 3rem; 
    }

    .mission-statement {
        font-size: 1.2rem; 
    }

    .nav-right {
        gap: 15px; 
    }
}