.custom-footer-wrapper {
    background-color: #b3b3b3;
    color: #333;
    font-family: sans-serif;
    padding-top: 40px;
}

.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #1a2b3c;
}

.footer-logo-placeholder {
    width: 150px;
    height: 100px;
    background: #f47b20;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.newsletter-form-stub {
    margin-top: 20px;
}

.newsletter-form-stub input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    margin-bottom: 10px;
}

.newsletter-form-stub button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
}

.footer-social-row {
    text-align: center;
    padding: 30px 0;
}

@media (max-width: 768px) {
    .footer-main-row {
        flex-direction: column;
    }
}