body {
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
}

header {
    border-bottom: 3px solid #004076;
}

.navbar-nav {
    margin-left: auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.navbar-nav .nav-link,
.navbar-nav .btn {
    font-size: 1.3rem;
}
.navbar-nav .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
#section1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
#section1 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}
#section1 .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 0 1rem;
}
#section1 .overlay-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
#section1 .overlay-content .help-text {
    font-size: 1.25rem;
    margin: 0;
}
#section1 .overlay-content .red-line {
    width: 100%;
    max-width: 180px;
    height: 3px;
    background-color: red;
    margin: 0.5rem auto 1.5rem;
}
#section1 .overlay-content .btn-primary {
    min-width: 200px;
    font-size: 1rem;
}

#section2 {
    background-color: #f2efef;
    padding: 60px 0;
}
#section2 h2 {
    color: #004076;
    margin-bottom: 2rem;
}
#section2 .row > .col-md-4 {
    display: flex;
}
#section2 .card-custom {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}
#section2 .card-custom:hover {
    transform: translateY(-5px);
}
#section2 .card-custom .card-body {
    flex: 1 1 auto;
}
#section3 {
    background-color: #f2efef;
    padding: 60px 0;
}
#section3 h2 {
    color: #004076;
    margin-bottom: 1.5rem;
}


#section4 {
    background-color: #e2dede;
    padding: 60px 0;
}
#section4 h2 {
    color: #004076;
    margin-bottom: 2rem;
}
#section4 .row > .col-md-6 {
    display: flex;
}
#section4 .job-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    background-color: white;
    transition: transform 0.2s;
    cursor: pointer;
    padding: 1.5rem;
}
#section4 .job-card p.flex-grow-1 {
    flex: 1 1 auto;
}
#section4 .job-card .btn-link {
    margin-top: 1rem;
    color: #004076;
    padding: 0;
    width: fit-content;
}
#section4 .job-card:hover {
    transform: translateY(-5px);
}


#section5 {
    background-color: #004076;
    color: white;
    padding: 40px 0;
    text-align: center;
}
#section5 a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}
#footer-logo {
    width: 100px;
    height: 100px;
}
.narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    color: #1a1a1a;
}


.small-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    float: left;
    margin: 0 1.5rem 1rem 0;

}

