<style>
    .contact-hero {
        background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('{% static "images/contact-header.jpg" %}');
        background-size: cover;
        background-position: center;
        padding: 60px 20px;
        text-align: center;
        color: white;
        width: 100%;
    }
    
    .contact-hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .contact-hero p {
        font-size: 16px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .contact-info-card {
        background: transparent;
        padding: 20px 15px;
        text-align: center;
        transition: all 0.3s;
        height: 100%;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .contact-info-card:hover {
        transform: translateY(-5px);
        border-bottom-color: #667eea;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
    }
    
    .contact-icon.phone {
        background: #10b981;
    }
    
    .contact-icon.email {
        background: #3b82f6;
    }
    
    .contact-icon.location {
        background: #ef4444;
    }
    
    .contact-icon.social {
        background: #8b5cf6;
    }
    
    .contact-icon i {
        font-size: 20px;
        color: white;
    }
    
    .contact-info-title {
        font-size: 16px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 8px;
    }
    
    .contact-info-card p {
        color: #6b7280;
        margin: 0;
        font-size: 13px;
        word-break: break-word;
    }
    
    .contact-info-card a {
        color: #6b7280;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 13px;
    }
    
    .contact-info-card a:hover {
        color: #667eea;
    }
    
    .contact-form-card {
        background: transparent;
        padding: 0;
    }
    
    .form-control {
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        padding: 10px 12px;
        background: white;
        font-size: 14px;
    }
    
    .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
        outline: none;
    }
    
    .btn-submit {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 10px 25px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
        font-size: 14px;
        width: 100%;
    }
    
    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102,126,234,0.4);
    }
    
    .google-map {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #e5e7eb;
    }
    
    .google-map iframe {
        height: 300px;
    }
    
    .alert-message {
        background: #d4edda;
        color: #155724;
        padding: 12px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 14px;
    }
    
    /* Social Media Links - Different Colors */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        font-size: 16px;
        text-decoration: none;
    }
    
    .social-link.facebook {
        background: #1877f2;
        color: white;
    }
    
    .social-link.facebook:hover {
        background: #145dbf;
        transform: translateY(-3px);
    }
    
    .social-link.twitter {
        background: #1da1f2;
        color: white;
    }
    
    .social-link.twitter:hover {
        background: #0d8bd9;
        transform: translateY(-3px);
    }
    
    .social-link.instagram {
        background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
        color: white;
    }
    
    .social-link.instagram:hover {
        transform: translateY(-3px);
    }
    
    .social-link.linkedin {
        background: #0077b5;
        color: white;
    }
    
    .social-link.linkedin:hover {
        background: #005582;
        transform: translateY(-3px);
    }
    
    .social-link.youtube {
        background: #ff0000;
        color: white;
    }
    
    .social-link.youtube:hover {
        background: #cc0000;
        transform: translateY(-3px);
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 24px;
        color: #1f2937;
        margin-bottom: 8px;
    }
    
    .section-header p {
        color: #6b7280;
        font-size: 14px;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .contact-hero h1 {
            font-size: 28px;
        }
        
        .contact-hero p {
            font-size: 14px;
        }
        
        .section-header h2 {
            font-size: 20px;
        }
        
        .section-header p {
            font-size: 13px;
        }
        
        .contact-info-card {
            padding: 15px 10px;
        }
        
        .contact-icon {
            width: 45px;
            height: 45px;
        }
        
        .contact-icon i {
            font-size: 18px;
        }
        
        .contact-info-title {
            font-size: 14px;
        }
        
        .contact-info-card p,
        .contact-info-card a {
            font-size: 11px;
        }
        
        .social-link {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
        
        .row.g-5 {
            --bs-gutter-y: 2rem;
        }
        
        .google-map iframe {
            height: 250px;
        }
        
        .container {
            padding-left: 15px;
            padding-right: 15px;
        }
    }
    
    @media (max-width: 480px) {
        .contact-info-card {
            padding: 12px 8px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
        }
        
        .contact-icon i {
            font-size: 16px;
        }
        
        .contact-info-title {
            font-size: 13px;
        }
        
        .social-links {
            gap: 8px;
        }
        
        .social-link {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }
        
        .btn-submit {
            padding: 10px 20px;
            font-size: 14px;
        }
    }