@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
body, * {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #EC1C25 ; 
    --secondary-color:#F2EEEE;
    --tertiary-color:#545557;
}

footer {
    margin-top: 30px;
    background:var(--tertiary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}
.footer-section {
    width: 220px;
    margin-bottom: 20px;
}
.footer-section h3 ,.contact-container h3{
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.footer-section ul li a:hover {
    color: var(--primary-color);
}
.footer-section.social-media p a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
}
.footer-section.social-media p a:hover {
    color: #ffcc00;
}
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
}


.footer-section.social-media p{
    display: flex;
    justify-content: center;
    gap: 15px;;
}

img{
    height: 25px;
    width: 25px;
    flex-direction: row;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section ,.contact-container{
        width: 100%;
        text-align: center;
        padding-bottom: 30px;
    }
}