.main-footer {
    background-color:#2f4f4f; 
    /*#1a3a16 Darker Forest Green */
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #d4af37;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #d4af37; /* Temple Gold */
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #d4af37;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-section p {
    font-size: 1.3rem;
    color: #e0e0e0;
    line-height: 1.3;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #d4af37;
}

/* Newsletter Form */
.footer-form {
    display: flex;
    margin-top: 15px;
}

.footer-form input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 100%;
}

.signup a {
        font-size: 1.2rem;
        color: #f8fbff;
        text-decoration: none;
        transition: 0.3s; 
    }

    .signup a:hover {
        color: #d4af37; 
    }

.footer-form button {
    background-color: #d4af37;
    color: #1a3a16;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

.footer-form button:hover {
    background-color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #bbb;
}
@media screen and (max-width: 750px){

    .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
}

}