
body {
    font-family: 'Roboto', Arial, sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 18px;
}

p {
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.8; 
}

p, h1, h2, h3, h4, h5, h6, a, span, div {
    font-family: 'Roboto', Arial, sans-serif; 
}


.text-section {
    background-color: grey;
    display: flex;
    flex-direction: column;
    padding: 100px;
    width: 31.5%;
    height: 400px;
}

.image-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden; 
}

.image-section img {
    max-width: 100%; 
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 300px;
    object-fit: contain;
}

.image-text-wrapper {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.image-text-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.container img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}


.notes-box {
  background-color: #E6F2FA; 
  border: 1px solid #B3D7F2;
  padding: 15px;
  border-radius: 4px;
}



.header {
    background-color: #333;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14.4px 15px; 
}

.header .logo-link {
    margin-right: 15px;
}

.header img {
    height: 40px;
    vertical-align: middle;
}


.nav {
    display: flex;
    justify-content: flex-start; 
    align-items: center;         
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    max-width: 1200px;
    margin: 0 auto;  
}

.nav-items {
    display: flex;
    gap: 40px;
}

.nav-left {
    display: flex;
    align-items: center;      
    gap: 15px; 
}


.nav-left .nav-logo-img {
    height: 30px; 
    width: auto;  
    margin-right: 100px;
}


.nav-items {
    display: flex;
    gap: 40px;
}

.nav-items a {
    color: black;
    text-decoration: none;
    font-weight: 500; 
    font-size: 25px; 
    padding: 7px 15px;
    border-radius: 5px;
    transition: color 0.3s ease; 
    margin-right: 20px;
}

.nav-items a:hover {
    color: gray;
    background-color: transparent;
}



.nav-right .nav-linkedin-img {
    height: 30px; 
    width: auto;  
    margin-left: 150px;
}


.menu-button {
    display: none;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .menu-button {
        display: block; 
        margin-left: auto;
    }

    .nav {
        display: flex; 
        flex-direction: row;
        align-items: center; 
        justify-content: space-between;
        padding: 10px 15px;
    }

    .nav-items {
        display: none; 
        flex-direction: column; 
        align-items: flex-start;
        background-color: white;
        width: 100%;
        padding: 0;
    }
	
    .nav-left {
        display: flex;
        align-items: center;
    }

    .nav-left .nav-logo-img {
        height: 40px;
        width: auto;
	margin-right: 120px;
	}

    .nav-items.show {
        display: flex; 
    }

    .nav-items a {
        padding: 4px 0 !important;
        margin: 0 !important; 
        line-height: 1.2 !important; 
        border: none;
    }

    .nav-items a:last-child {
        border-bottom: none;
    }

    .nav-items .nav-item {
        width: 100%;
        text-align: left;
        margin: 0 !important;
    }
	
   .nav-right .nav-linkedin-img {
        display: none; 
    }
	
	
    .content {
        margin-top: 0;
        transition: margin-top 0.3s ease;
    }

    .nav-items.show + .content {
        margin-top: calc(40px * 4);
    }
}


@media (min-width: 769px) {
    .menu-button {
        display: none;
    }

    .nav-items {
        justify-content: center;
        align-items: center;
        gap: 35px;
    }
}


.content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.home-page .uniform-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 250px;
	margin-top: 30px;
}

.image-text-wrapper {
    margin-bottom: 10px;
}

.footer {
    background-color: #333;
    color: white;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
    padding: 5px 10px;
    text-align: center;
}

.linkedin-icon {
    width: 20px; 
    height: auto; 
    margin-bottom: 5px;
}

.footer p {
    font-size: 14px; 
    margin: 0;
}


#copilot-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.img-medium {
    width: 64%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.category {
    margin-bottom: 0 !important;
}

.row {
    margin-bottom: 0 !important;
}
