<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Contact Header */
.contact-header {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 71, 171, 0.8), rgba(0, 48, 143, 0.9)), url('https://source.unsplash.com/random/1600x900/?office');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
}

.contact-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-info-content p, .contact-info-content a {
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-info-content a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-gray);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-dark);
    transform: translateY(-3px);
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Call to Action */
.cta-contact {
    padding: 80px 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.cta-contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
}

.cta-contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.cta-contact .container {
    position: relative;
    z-index: 2;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-contact-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cta-contact-features {
    margin-bottom: 30px;
}

.cta-contact-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cta-contact-feature i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.cta-contact-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-contact-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.cta-contact-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-dark);
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--box-shadow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-contact-badge span {
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid, .cta-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-top: 50px;
    }
    
    .cta-contact-image {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .contact-header-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-container, .cta-contact {
        padding: 30px 20px;
    }
    
    .cta-contact-badge {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
        top: 10px;
        right: 10px;
    }
} </pre></body></html>