.footer {
    background: #efd6c9;
    padding: 48px 20px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    gap: 40px;
}

.left-content {
    flex: 1;
    min-width: 0;
}

.title {
    color: #e35353;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.company-name {
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.address {
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.address div {
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.contact {
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.contact div {
    margin-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
}

.right-content {
    display: flex;
    font-family: 'Montserrat', sans-serif;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: #555555;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .left-content {
        width: 100%;
    }
    
    .right-content {
        width: 100%;
        align-items: center;
    }
    
    .logo {
        width: 180px;
        height: 90px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .company-name {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .address {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .contact {
        font-size: 14px;
    }
    
    .logo {
        width: 150px;
        height: 75px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
}