﻿/* Footer Styles */
.footer {
    background-color: #f8c8dc;
    color: #333;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    margin-top:50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    /*margin: 0 auto;*/
    padding: 0 20px;
}

.footer h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer p, .footer ul, .footer li {
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1.6;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #a04d69;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-contact i {
    margin-right: 10px;
    color: #a04d69;
}

.footer-bottom {
    text-align: center;
    padding: 10px 20px;
    background-color: #a04d69;
    color: #fff;
    font-size: 0.9em;
}
