:root {
    --primary-color: #0056b3;
    --secondary-color: #004085;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1920/1080') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* Contact Information */
.contact-info h4 {
    color: var(--dark-color);
    margin-top: 1rem;
}

.contact-info p {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info h4 {
        font-size: 1.25rem;
    }
    
    .contact-form form {
        padding: 1.5rem;
    }
}
