.footer {
    background-color: #0b2345;
    color: white;
    padding: 20px 0;
    overflow-x: hidden;
    
}
.footer a{
    text-decoration: none;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    border-bottom: 2px solid #becfe7;
    padding-bottom: 10px;
}

.footer-section p, 
.footer-section ul {
    margin: 10px 0;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none; /* Remove default list style */
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #fdfdfd;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background-color: #0a1c35;
}
.footer-bottom a{
    color: white;
}
@media (max-width: 768px) {
    .footer-container {

        flex-direction: column; 
        align-items: start;
    }
    .footer-section {
        width: 100%;
        margin: 0; 
    }
    
    .footer-section {
        text-align: start;
        padding: 10px;
    }
}

.footer-section p{
    background-color: none;
    color: white;
}
.welcome{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2em;
    color: #becfe7;
    padding: 20px;
}
.welcome img{
    width: 30%;
}
.welcome p{
    font-size: 18px;
}
.mobile{
    display: none;
}
@media (max-width:768px) {
    .mobile{
        display: block;
    }
    .laptop{
        display: none;
    }
}