body {
    font-family: 'Roboto', sans-serif;
}
.navbar {
    background-color: #2D3691;
}
.navbar .navbar-nav .nav-item {
    margin-right: 20px;
}
.navbar .nav-link, .navbar .navbar-brand {
    color: #ffffff;
}
.navbar .nav-link:hover, .navbar .nav-link:focus {
    color: #cccccc;
}
.navbar .nav-link.active {
    color: #ffffff;
}
.logo-container {
    text-align: center;
    background-color: #ffffff;
    padding: 10px 0;
    margin-bottom: -1px;
}
.logo-container img {
    height: 100px;
    max-width: 100%;
    height: auto;
}
.header-image {
    width: 100%;
    height: 700px;
    background: url('images/header-image2.jpg') center center no-repeat;
    background-size: cover;
}
.header-image2 {
    width: 100%;
    height: 700px;
    background: url('images/header-image.jpg') center center no-repeat;
    background-size: cover;
}
.footer {
    background-color: #2D3691;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
}
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.content-section p {
    text-align: justify;
}
.section-header {
    font-weight: bold;
    margin-bottom: 40px;
}
.team-member {
    text-align: center;
    margin-bottom: 30px;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.team-member h3 {
    margin-top: 20px;
}
.about-us-photo, .services-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}
.about-us-content, .service-item, .team-member {
    margin-bottom: 30px;
}
.back-to-top {
    text-align: center;
    margin-top: 20px;
}
.back-to-top a {
    color: #ffffff;
    background-color: #2D3691;
    padding: 10px 15px;
    border-radius: 50%;
    display: inline-block;
}
.back-to-top a i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .navbar .navbar-nav .nav-item {
        margin-right: 10px;
    }
    .logo-container {
        padding: 5px 0;
    }
    .logo-container img {
        height: 80px;
    }
    .content-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}