/* ========================================
   七台河助孕页面专属样式
   ======================================== */

/* 页面头部粉色变体 */
.page-header-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* CTA粉色变体 */
.cta-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.cta-pink .btn-cta {
    color: #f5576c;
}

/* FAQ列表样式 */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(240, 147, 251, 0.05);
}

.faq-question h4 {
    color: #333;
    font-size: 1.1em;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #f5576c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* 联系表单容器 */
.contact-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* 表单样式 */
.contact-form {
    margin-top: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f5576c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 87, 108, 0.1);
}

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

/* 服务高亮区块 */
.service-highlight {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05), rgba(245, 87, 108, 0.05));
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #f5576c;
    margin-bottom: 40px;
}

.service-highlight h3 {
    color: #f5576c;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-highlight h3 i {
    margin-right: 10px;
}

.service-highlight p {
    color: #666;
    line-height: 1.8;
}

/* 简单特性列表 */
.feature-list-simple {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-list-simple li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.feature-list-simple li::before {
    content: '\f058';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #f5576c;
}
