/* Attempt at css :>( */
.menuInner a {
    color: #ffffff !important;
}

.menuInner a:hover {
    color: #00aaff !important;
}

.menuInner .selected a {
    color: #ff6600 !important;
}

/* header items alligned */
.headerContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

Logo edit
.headerContainer .logo {
    display: flex;
    align-items: center;
}

.headerContainer .loginBox,
.headerContainer .searchBox {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.headerContainer > div {
    margin: 0 10px;
}   

.headerContainer {
    padding: 10px 20px;
}

.searchBox input[type="text"] {
    padding: 6px 10px;
    border-radius: 20px;
}

.searchBox button {
    padding: 6px 12px;
    margin-left: 5px;
    border-radius: 20px;
}

/* DS to the image section */
.camera_wrap {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* Project aims section */

.project-aims-section {
    display: grid;                     
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;                        
    max-width: 1100px;                
    margin: 0 auto;                    
    overflow: visible !important;      
    color: #e0e0e0; 
}                   


.project-aims-section ul {
    background: #00746B;               
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,.5); 
    list-style: disc;                  
}


.project-aims-section li {
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .project-aims-section {
        grid-template-columns: 1fr;
    }
}

.project-aims-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #175D68;
}

.project-aims-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #175D68; 
}

.project-aims-header p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.project-aims-header p:last-of-type {
    font-size: 17px;   
    font-weight: 600;  
}