/* Footer Section - Enhanced Font Sizes */

.marshall-home-footer {
    background-color: #333;
    color: #fff;
    padding: 70px 0 25px; /* Increased from 60px 0 20px */
    font-family: 'Lancelot', cursive;
}

.marshall-home-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marshall-home-footer-content {
    width: 100%;
}

/* Footer Main Content */
.marshall-home-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px; /* Increased from 40px */
    margin-bottom: 45px; /* Increased from 40px */
}

/* Footer Sections */
.marshall-home-footer-section {
    display: flex;
    flex-direction: column;
}

/* Logo */
.marshall-home-footer-logo {
    margin-bottom: 25px; /* Increased from 20px */
}

.marshall-home-footer-logo img {
    max-height: 55px; /* Increased from 50px */
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

/* Footer Description */
.marshall-home-footer-description {
    font-size: 19px; /* Increased from 18px */
    line-height: 1.6;
    color: #ccc;
    margin: 0;
    max-width: 320px; /* Increased from 300px */
}

/* Footer Headings */
.marshall-home-footer-heading {
    font-size: 23px; /* Increased from 22px */
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px; /* Increased from 20px */
    margin-top: 0;
}

/* Footer Links */
.marshall-home-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marshall-home-footer-links li {
    margin-bottom: 15px; /* Increased from 12px */
}

.marshall-home-footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 19px; /* Increased from 18px */
    transition: color 0.3s ease;
}

.marshall-home-footer-links a:hover {
    color: #5ca7db;
}

/* Contact Info */
.marshall-home-footer-contact {
    margin-bottom: 30px; /* Increased from 25px */
}

.marshall-home-footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Increased from 12px */
    font-size: 19px; /* Increased from 18px */
    color: #ccc;
}

.marshall-home-footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.marshall-home-footer-contact a:hover {
    color: #5ca7db;
}

.marshall-home-footer-contact i {
    color: #5ca7db;
    margin-right: 15px; /* Increased from 12px */
    width: 20px; /* Increased from 18px */
    font-size: 17px; /* Increased from 16px */
}

/* Social Media */
.marshall-home-footer-social {
    display: flex;
    gap: 18px; /* Increased from 15px */
}

.marshall-home-footer-social a {
    background-color: #5ca7db;
    color: #fff;
    width: 50px; /* Increased from 45px */
    height: 50px; /* Increased from 45px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.marshall-home-footer-social a:hover {
    background-color: #4b86af;
    transform: translateY(-2px);
}

.marshall-home-footer-social i {
    font-size: 20px; /* Increased from 18px */
}

/* Footer Bottom */
.marshall-home-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px; /* Increased from 30px */
    border-top: 1px solid #555;
}

.marshall-home-footer-copyright p {
    margin: 0;
    font-size: 17px; /* Increased from 16px */
    color: #999;
}

.marshall-home-footer-legal {
    display: flex;
    gap: 25px; /* Increased from 20px */
}

.marshall-home-footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 17px; /* Increased from 16px */
    transition: color 0.3s ease;
}

.marshall-home-footer-legal a:hover {
    color: #5ca7db;
}

/* Large Desktop Styles */
@media (max-width: 1200px) {
    .marshall-home-footer-main {
        gap: 40px; /* Increased from 35px */
    }
    
    .marshall-home-footer-heading {
        font-size: 22px; /* Increased from 21px */
        margin-bottom: 22px; /* Increased */
    }
    
    .marshall-home-footer-links a,
    .marshall-home-footer-contact p,
    .marshall-home-footer-description {
        font-size: 18px; /* Increased from 17px */
    }
    
    .marshall-home-footer-links li {
        margin-bottom: 13px; /* Increased */
    }
    
    .marshall-home-footer-contact {
        margin-bottom: 28px; /* Increased */
    }
    
    .marshall-home-footer-contact p {
        margin-bottom: 13px; /* Increased */
    }
}

/* Tablet Styles */
@media (max-width: 768px) {
    .marshall-home-footer {
        padding: 60px 0 25px; /* Increased from 50px 0 20px */
    }
    
    .marshall-home-footer-container {
        padding: 0 20px; /* Increased from 15px */
    }
    
    .marshall-home-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px; /* Increased from 30px */
        margin-bottom: 40px; /* Increased from 35px */
    }
    
    .marshall-home-footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 25px; /* Increased from 20px */
    }
    
    .marshall-home-footer-description {
        max-width: 100%;
    }
    
    .marshall-home-footer-heading {
        font-size: 21px; /* Increased from 20px */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-home-footer-links li {
        margin-bottom: 12px; /* Increased */
    }
    
    .marshall-home-footer-contact {
        margin-bottom: 25px; /* Increased */
    }
    
    .marshall-home-footer-contact p {
        margin-bottom: 12px; /* Increased */
    }
    
    .marshall-home-footer-social {
        gap: 15px; /* Increased */
    }
    
    .marshall-home-footer-social a {
        width: 46px; /* Increased */
        height: 46px; /* Increased */
    }
    
    .marshall-home-footer-social i {
        font-size: 18px; /* Increased */
    }
    
    .marshall-home-footer-bottom {
        flex-direction: column;
        gap: 18px; /* Increased from 15px */
        text-align: center;
        padding-top: 32px; /* Increased */
    }
    
    .marshall-home-footer-legal {
        gap: 18px; /* Increased from 15px */
    }
}

/* Mobile Styles - Everything Centered */
@media (max-width: 480px) {
    .marshall-home-footer {
        padding: 50px 0 25px; /* Increased from 40px 0 20px */
    }
    
    .marshall-home-footer-container {
        padding: 0 20px; /* Increased from 10px for small margins */
    }
    
    .marshall-home-footer-main {
        grid-template-columns: 1fr;
        gap: 30px; /* Increased from 25px */
        margin-bottom: 35px; /* Increased from 30px */
    }
    
    /* Center all footer sections on mobile */
    .marshall-home-footer-section {
        text-align: center;
        align-items: center;
    }
    
    .marshall-home-footer-section:first-child {
        grid-column: auto;
        margin-bottom: 15px; /* Increased from 10px */
    }
    
    .marshall-home-footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px; /* Increased from 15px */
    }
    
    .marshall-home-footer-logo img {
        max-height: 45px; /* Increased from 40px */
    }
    
    .marshall-home-footer-description {
        text-align: center;
        max-width: 100%;
    }
    
    .marshall-home-footer-heading {
        font-size: 20px; /* Increased from 19px */
        margin-bottom: 15px; /* Increased from 12px */
        text-align: center;
    }
    
    .marshall-home-footer-links {
        text-align: center;
    }
    
    .marshall-home-footer-links a,
    .marshall-home-footer-contact p,
    .marshall-home-footer-description {
        font-size: 17px; /* Increased from 16px */
    }
    
    .marshall-home-footer-links li {
        margin-bottom: 12px; /* Increased from 10px */
    }
    
    .marshall-home-footer-contact {
        margin-bottom: 25px; /* Increased from 20px */
        text-align: center;
    }
    
    .marshall-home-footer-contact p {
        margin-bottom: 12px; /* Increased from 10px */
        justify-content: center;
    }
    
    .marshall-home-footer-contact a {
        justify-content: center;
    }
    
    .marshall-home-footer-contact i {
        margin-right: 12px;
        width: 18px;
        font-size: 16px;
    }
    
    .marshall-home-footer-social {
        justify-content: center;
        gap: 15px; /* Increased from 12px */
    }
    
    .marshall-home-footer-social a {
        width: 44px; /* Increased from 40px */
        height: 44px; /* Increased from 40px */
    }
    
    .marshall-home-footer-social i {
        font-size: 17px; /* Increased from 16px */
    }
    
    .marshall-home-footer-bottom {
        padding-top: 30px; /* Increased from 25px */
        text-align: center;
    }
    
    .marshall-home-footer-copyright p,
    .marshall-home-footer-legal a {
        font-size: 16px; /* Increased from 15px */
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .marshall-home-footer-container {
        padding: 0 18px; /* Better margins for extra small screens */
    }
    
    .marshall-home-footer-logo img {
        max-height: 42px;
    }
    
    .marshall-home-footer-heading {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .marshall-home-footer-links a,
    .marshall-home-footer-contact p,
    .marshall-home-footer-description {
        font-size: 16px;
    }
    
    .marshall-home-footer-social a {
        width: 42px;
        height: 42px;
    }
    
    .marshall-home-footer-social i {
        font-size: 16px;
    }
    
    .marshall-home-footer-legal {
        flex-direction: column;
        gap: 12px; /* Increased from 10px */
        align-items: center;
    }
    
    .marshall-home-footer-copyright p,
    .marshall-home-footer-legal a {
        font-size: 15px; /* Increased from 14px */
    }
}