/* Service Industry LP Specific Styles */

/* Hero Section Overrides */
.hero-service {
    background: linear-gradient(rgba(78, 52, 46, 0.8), rgba(121, 85, 72, 0.8)), url('../images/hero-service.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 100px;
    position: relative;
}

.hero-service .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-service .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Pain Points Section */
.pain-points {
    background-color: #fff;
    padding: 80px 0;
}

.pain-point-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pain-point-item {
    background: var(--light-bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.pain-point-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Solutions Section */
.solutions {
    background-color: var(--light-bg-color);
}

.solution-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.solution-icon {
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(230, 126, 34, 0.1);
    padding: 15px;
    border-radius: 50%;
    min-width: 70px;
    text-align: center;
}

.solution-content h3 {
    margin-bottom: 10px;
    color: var(--heading-color);
}

/* CTA Override */
.cta-service {
    background: var(--accent-gradient);
}