footer {
    background-color: #b4769c;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
}

.footer-section h3 {
    margin: 0 0 15px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.location-info {
    text-align: left;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.location-item i {
    margin-right: 10px;
    width: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.social-info {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.phone-number {
    font-size: 1.1em;
    margin-top: 10px;
}

.phone-number a {
    color: white;
    text-decoration: none;
}

.phone-number a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-info {
        text-align: center;
    }

    .location-item {
        justify-content: center;
    }
}