.page-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    padding: 60px;
    background: var(--light-bg);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
}

.service-block.reverse {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-content {
    position: relative;
}

.service-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -30px;
    right: 20px;
}

.service-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service-features li {
    padding: 15px 20px;
    background: var(--white);
    border-radius: 8px;
    position: relative;
    padding-left: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-block.reverse .service-features li {
    background: var(--light-bg);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.service-process {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-block {
        padding: 30px 20px;
    }
    
    .service-block h2 {
        font-size: 1.8rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}
