
/* Footer Styles */
.footer {
    background-color: #121111; /* Light grey background */
    color: #fff; /* Dark text color for readability */
    font-family: Arial, sans-serif; /* Simple, readable font */
    padding: 20px 0; /* Padding at top and bottom */
    text-align: center; /* Center aligns the content */
}

.footer-row {
    display: flex; /* Enables flexbox layout */
    justify-content: center; /* Centers flex items on the main axis */
    flex-wrap: wrap; /* Allows flex items to wrap */
    max-width: 1200px; /* Maximum width of the footer */
    margin: auto; /* Centers the row */
}

.footer-column {
    flex: 1; /* Flex grow */
    min-width: 200px; /* Minimum width */
    padding: 10px; /* Padding around each column */
}

.footer-column h3 {
    margin-bottom: 15px; /* Space below the header */
    font-size: 27px; /* Font size for headers */
 
    color: #98b4cf;
}

.footer-link {
    display: block; /* Each link takes a full row */
    margin-bottom: 10px; /* Margin below each link */
    color: #faf6f6; /* Link color */
    text-decoration: none; /* Removes underline from links */
}

.footer-link:hover {
    text-decoration: underline; /* Underline on hover for links */
}

.social-media-icons {
    margin-top: 20px; /* Space above social media icons */
}

.social-media-icons a {
    display: inline-block; /* Display icons inline */
    margin-right: 10px; /* Space between icons */
    color: #b4b0b0; /* Icon color */
    font-size: 24px; /* Size of icons */
}

.social-media-icons a:hover {
    color: #007bff; /* Change color on hover */
}

.copy-text {
    margin-top: 30px; /* Space above copyright text */
    font-size: 14px; /* Font size */
}


/* ... existing styles ... */

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column; /* Stacks footer columns vertically on small screens */
    }
    .footer-column {
        /* Each footer column takes full width on small screens */
        flex-basis: 100%;
        max-width: 100%;
    }
    /* Optional: Adjust social media icons size for mobile */
    .social-media-icons a {
        font-size: 20px; /* Smaller icons for mobile */
        margin-right: 5px; /* Less space between icons */
    }
}

/* No changes to .copy-text, as it's already suitable for mobile */
