/* Add this to your existing CSS */

/* Contact Info Section */
.footer-contact-info {
    flex: 0 0 20%;
    max-width: 250px;
    margin-bottom: 30px;
}

.footer-contact-info h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #e7a835;
}

.footer-contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e7a835;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: #e7a835;
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #f5f5f5;
    transition: color 0.3s ease;
}

.contact-item:hover span {
    color: #e7a835;
}

/* Newsletter Form - Adjusting to work with the new layout */
.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input {
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}

.newsletter-form button {
    padding: 10px;
    background-color: #e7a835;
    color: #461111;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d49728;
}

/* Updated Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        justify-content: space-around;
    }
    
    .footer-logo-section, 
    .footer-links-section,
    .footer-offices-section,
    .footer-newsletter-section,
    .footer-contact-info {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .footer-logo-section, 
    .footer-links-section,
    .footer-offices-section,
    .footer-newsletter-section,
    .footer-contact-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Adjust the offices grid to full width on mobile */
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card-usa {
        grid-column: 1;
        width: 100%;
    }
}