.page-hero {
    background: var(--gradient-1);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-detail {
    padding: 80px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-item.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-item.reverse .service-content {
    order: 2;
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--light-bg);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-icon-large {
    font-size: 8rem;
    text-align: center;
    opacity: 0.8;
}

.industries {
    padding: 80px 0;
    background: var(--light-bg);
}

.industries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s;
}

.industry-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.industry-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse .service-content {
        order: 1;
    }
    
    .service-icon-large {
        font-size: 5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}
