.spud-footer {
    background-color: #4A3311; /* Rich Earth Brown */
    color: #FFF8ED; /* Soft Cream */
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
    border-radius: 40px 40px 0 0; /* Modern rounded top */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255, 248, 237, 0.2);
    padding-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 60px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #E8D5B5;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: #F4C542; /* Golden Potato Yellow */
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFF8ED;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F4C542;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    flex: 1;
    outline: none;
}

.newsletter-form button {
    background-color: #F4C542;
    color: #4A3311;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #E8D5B5;
    font-size: 0.9rem;
}