/* Montage Section Background */
.montage {
    background: #0078d7;
    padding: 16px 0;
}
.it-description {
    background: #0078d7;
    padding: 0 0 24px 0;
    color: #aee3fa;
    text-align: left;
}
.it-description-content {
    max-width: 880px;
    padding: 18px 20px;
    margin: 0 0 0 20px;
    background: #ffffff; /* white box */
    color: #000000; /* black text for readability */
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.it-description-content p {
    font-size: 1em;
    margin-bottom: 14px;
    line-height: 1.6;
    color: inherit; /* ensure paragraphs inherit the blue text color */
}

/* Style for IT description bullet list */
.it-description-content .it-list {
    margin: 0;
    padding-left: 20px;
}
.it-description-content .it-list li {
    margin-bottom: 12px;
    font-size: 1em;
    line-height: 1.6;
    color: inherit; /* inherit black from container */
}

/* Responsive adjustments: give the white box more room on wider screens */
@media (min-width: 768px) {
    .it-description-content {
        margin-left: 40px; /* align with montage/nav */
        max-width: 1000px; /* allow wider content on tablets/desktops */
        padding: 24px 28px;
    }
}

@media (min-width: 1200px) {
    .it-description-content {
        margin-left: 40px;
        max-width: 1200px;
        padding: 28px 40px;
    }
}
/* Montage images: fixed size and cover to ensure uniform appearance */
.montage-img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    display: inline-block;
    margin: 0 8px;
}
/* Footer Styling */
.site-footer {
    background: #0078d7;
    color: #fff;
    font-size: 0.85em;
    /* box-shadow: 0 -2px 8px rgba(0,0,0,0.08); */
    text-align: left;
}

.footer-content {
    /* width: 100%; */
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
}


}

.footer-content .disclaimer-label {
    color: #fff;
    font-weight: bold;
}
.footer-content {
    max-width: 900px;
    padding: 0 16px;
    text-align: left;
        margin: 0;
}


.footer-content small {
    color: #aee3fa;
    text-align: left;
    display: block;
    font-size: 0.85em;
}

    .footer-content small {
            color: #fff;
    }
    .footer-content .disclaimer-label {
            color: #fff;
            font-weight: bold;
    }
}
/* Core Styling */

html {
    background: #0078d7;
    min-height: 100%;
}
body {
    background-color: #0078d7;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    text-align: left;
}

.logo {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.subtitle {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    margin-top: 5px; /* Adjust the margin as needed */
    margin-left: 40px; /* Adjust this value to move the text further to the right */
    margin-bottom: 20px; /* Add some space below the subtitle */
}

.main-nav {
    background-color: #0078d7;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
}

.nav-text {
    margin-top: 10px; /* Adjust the margin as needed */
    margin-left: 40px; /* Adjust this value to move the text further to the right */
}

.nav-text a {
    color: #ffffff; /* Set link color to white */
    text-decoration: none; /* Remove underline */
}

.nav-text a:hover,
.nav-text a:active,
.nav-text a:visited {
    color: #ffffff; /* Ensure link color remains white on hover, active, and visited states */
}

header {
    background-color: #0078d7;
}

header .logo img {
    max-width: 100%;
    height: auto;
}

header .nav-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.montage-row {
display: flex;
justify-content: flex-start;
align-items: center;
gap: 20px;
margin: 30px 0;
margin-left: 40px;
}
.montage-img:hover {
    transform: scale(1.05);
}
