.contact-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px 32px;
    margin: 0 0 20px 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-banner-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-banner-text {
    flex: 1;
    max-width: 100%;
}

.contact-banner-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.contact-banner-description {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.contact-phone {
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
}

.contact-email {
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-banner {
        margin: 0 0 15px 0;
        border-radius: 12px;
        padding: 20px 16px;
    }
    
    .contact-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-banner-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .contact-banner-title {
        font-size: 20px;
    }
    
    .contact-banner-description {
        font-size: 14px;
    }
}