/* Footer Styles */
.main-footer {
    background-color: #25303d; /* Dark Brown */
    color: white;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

/* Footer About */
.footer-about {
    flex: 1;
    max-width: 300px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Links */
.footer-links {
    flex: 1;
    max-width: 200px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2a50aa; /* Yellow */
}

/* Footer Contact */
.footer-contact {
    flex: 1;
    max-width: 300px;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: #2a50aa; /* Yellow */
}

.footer-contact .social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-contact .social-icons img {
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-contact .social-icons img:hover {
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #2a50aa; /* Yellow */
}


@media (max-width:500px){
    
   .footer-container {
  
    display: block;
    flex-direction:none;
   
}
    
.footer-contact, .footer-links, .footer-about{
display:block;
width:95%;
margin:20px auto 0px auto ;
}

}