.contact-hero-1563-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
}

.contact-hero-1563-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-1563-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem 1rem;
    margin: 0 auto;
}

.contact-hero-1563-location {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-hero-1563-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-hero-1563-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-1563-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-hero-1563-cta {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-hero-1563-cta-secondary {
    border-color: currentColor;
}

.contact-hero-1563-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-hero-1563-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-1563-subtitle {
        font-size: 1.1rem;
    }

    .contact-hero-1563-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-hero-1563-cta {
        width: 100%;
        text-align: center;
    }
}