/* 页面标题 */
.page-title {
    margin-top: 80px;
    padding: 40px 0;
    background: #f8f8f8;
    text-align: center;
}

.page-title h2 {
    font-size: 36px;
    color: #333;
}

/* 服务分类 */
.service-categories {
    padding: 60px 0;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-item {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.category-item img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.category-content {
    flex: 1;
    padding: 30px;
}

.category-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
}

.category-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.category-content ul li {
    color: #666;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.category-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #FF6B6B;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* 服务价格 */
.service-prices {
    padding: 60px 0;
    background: #f8f8f8;
}

.price-table {
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: #FF6B6B;
    color: #fff;
    font-weight: normal;
}

.price-table tr:last-child td {
    border-bottom: none;
}

/* 服务特色 */
.service-features {
    padding: 60px 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
}

/* 预约服务 */
.service-booking {
    padding: 60px 0;
    background: #f8f8f8;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* 通用样式 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #FF6B6B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff5252;
} 