/* Banner样式 */
.contact-banner {
    height: 50vh;
    min-height: 400px;
    background-image: url('../images/contact/contact.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-banner h1 {
    color: #fff;
    font-size: 48px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 内容区域样式 */
.contact-content {
    padding: 80px 0;
    background: #1a1a1a;
}

.content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.image-section {
    flex: 1;
    max-width: 600px;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.info-section {
    flex: 1;
    color: #fff;
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #C6A57E;
}

.contact-info p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .image-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        height: 30vh;
        min-height: 200px;
    }

    .contact-banner h1 {
        font-size: 36px;
    }

    .contact-content {
        padding: 40px 0;
    }

    .info-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
} 