/* 联系页面特定样式 */

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

.contact-info h3,
.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.contact-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-icon {
    color: #3498db;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
    min-width: 24px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item a,
.contact-item span {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

.contact-item a:hover {
    color: #3498db;
}

.office-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.office-hours p {
    margin-bottom: 10px;
    color: #555;
}

.office-hours strong {
    color: #2c3e50;
    min-width: 100px;
    display: inline-block;
}

.contact-form-inner {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-form-inner {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .office-hours p {
        display: flex;
        flex-direction: column;
    }
    
    .office-hours strong {
        margin-bottom: 5px;
    }
}