body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.footer {
    background-color: #ff867e; /* Match the footer's background color */
    color: white;
    padding: 20px ;
    text-align: left;
    margin: 20px;
    box-sizing: border-box;
    border-radius: 25px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
    color: white;
}
.footer-section{
    margin-top: 10px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}
