/* Footer Styles */
.footer {
    background-color:  var(--petsolive-primary);
    color: #ffffff; /* White text color */
    padding: 20px 0;
    margin-top: auto; /* Ensure footer sticks to the bottom */
}

.footer h5 {
    color: #ffffff; /* White color for headings */
    margin-bottom: 15px;
}

.footer a {
    color: #ffffff; /* White color for links */
    text-decoration: none; /* Remove underline */
}

.footer a:hover {
    color: #007bff; /* Change color on hover */
}

.footer ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: var(--petsolive-secondary);
    padding: 10px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff; /* White text color */
}

.social-links a {
    color: #ffffff; /* White color for social icons */
    margin: 0 10px;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #007bff; /* Change color on hover */
}

/* Ensure the footer is always at the bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}