/* first footer  */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    width: 100%;  /* Ensures the body has full width */
    overflow-x: hidden; /* Prevents any horizontal overflow */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}


.footer {
    background-color: #333; /* Dark background for footer */
    color: #fff;
    padding: 20px 0; /* Vertical padding, no horizontal padding */
    font-size: 14px;
    width: 100%; /* Ensure footer is full width */
   
    box-sizing: border-box; /* Include padding in width calculation */
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px; /* Horizontal padding inside the container */
    margin: 0 auto; /* Centering the container if needed */
    width: 100%; /* Full width of the footer */
}




.footer-column {
    width: 20%; /* Adjust based on preference */
}

.footer-column h4 {
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    line-height: 1.8; /* Spacing for readability */
}

.footer-action {
    margin-top: 20px;
    text-align: center;
}

.footer-action button {
    padding: 10px 20px;
    background-color: #f90; /* Contrast color for the button */
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.footer-action button:hover {
    background-color: #e80; /* Slightly darker on hover */
}







.site-footer {
    background-color: #8b0000; /* dark red color */
    color: #ffffff; /* white text color */
    padding: 5px 10px; /* padding around the text */
    font-size: 14px; /* text size */
    width:100%;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* ensures responsiveness */
}

.site-footer a {
    color: #ffffff; /* ensures links are also white */
    text-decoration: none; /* no underline */
    margin: 0 2px; /* spacing around links */
}

.site-footer a:hover {
    text-decoration: underline; /* underline on hover for better accessibility */
}

.site-footer .right-section {
    white-space: nowrap; /* keeps this section on one line as much as possible */
}

.site-footer .copyright {
    display: block; /* makes sure this is on a new line */
    margin-top: 10px; /* spacing from the links above */
    text-align: center; /* centers copyright text */
    width: 100%; /* full width */
}
