/* Footer Styles */
footer {
    background-color: #C8A7C4;
    padding: 40px 20px;
    color: #3c2727;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin: 20px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3c2727;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #3c2727;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    color: #3c2727;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #007bff;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    font-size: 24px;
    color: #3c2727;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 12px;
    color: #3c2727;
}
