.page-header {
    background: linear-gradient(rgba(255, 182, 193, 0.8), rgba(255, 105, 180, 0.8)), url('https://via.placeholder.com/1200x300') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: #ff6b9d;
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    margin: 20px;
}

.stat-item .number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #ff6b9d;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 16px;
    color: #666;
}

.service-categories {
    padding: 60px 0;
    background-color: #fffaf8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-10px);
}

.category-item .icon {
    margin-bottom: 20px;
}

.category-item .icon-placeholder {
    font-size: 48px;
}

.category-item h3 {
    color: #ff6b9d;
    margin-bottom: 15px;
    font-size: 22px;
}

.category-item p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    min-height: 60px;
}

.service-process {
    padding: 60px 0;
    background-color: #fff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: #ff9eb5;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff9eb5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #ff6b9d;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
}

.service-support {
    padding: 60px 0;
    background-color: #fffaf8;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.support-text {
    flex: 1;
}

.support-text h2 {
    color: #ff6b9d;
    font-size: 32px;
    margin-bottom: 20px;
}

.support-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.support-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.support-text ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        margin-bottom: 40px;
    }
    
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    .support-content {
        flex-direction: column;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin: 10px 0;
    }
}