/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Footer styling with top border */
.footer {
    position: relative; /* Needed for absolute positioning of .footer-horizontal */
    width: 100%;
    height: 600px;
    background-color: #fff;
    color: #000;
    font-family: Arial, sans-serif; /* Overall footer text uses Arial */
    padding: 40px 20px;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
}

.footer-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Left section */
.footer-left {
    width: 40%;
    margin-right: 20px;
    font-size: 12px;
    line-height: 1.6;
}

/* Right side: container for columns */
.footer-right {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

/* Each column */
.footer-column {
    width: 25%;
}

/* Column titles remain unchanged */
.footer-column h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    /* Titles will use the inherited font (Arial, sans-serif) */
}

/* Apply Poppins font to the list items only */
.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

/* Override default <a> styling in footer columns to match plain text */
.footer-column li a {
    color: inherit;           /* Use the same color as the <li> (black) */
    text-decoration: none;    /* Remove underline */
}

.footer-column li a:hover,
.footer-column li a:focus {
    color: inherit;           /* Don’t change color on hover/focus */
    text-decoration: none;    /* No underline on hover/focus */
    cursor: pointer;          /* Keep the hand-cursor so it feels clickable */
}

/* Horizontal div at the bottom, spanning the full footer width */
.footer-horizontal {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;               /* Adjust height as needed */
    width: 100%;
    background-color: #007BFF;  /* Change color to suit your design */
}
