    .service-page-header {
        background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
        color: white;
        padding: 100px 0 80px 0;
        text-align: center;
    }
    
    .service-page-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .service-page-header .lead {
        font-size: 1.3rem;
        opacity: 0.9;
    }
    
    .service-content-section {
        padding: 80px 0;
    }
    
    .service-intro {
        background-color: #f8f9fa;
        border-radius: 15px;
        padding: 40px;
        margin-bottom: 50px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .service-intro h2 {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .service-intro p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 0;
    }
    
    .features-section {
        margin: 60px 0;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border-left: 4px solid var(--primary-color);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 24px;
    }
    
    .feature-card h4 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .types-section {
        background-color: #f9f9f9;
        padding: 60px 0;
        margin: 60px 0;
        border-radius: 20px;
    }
    
    .type-card {
        background: white;
        border-radius: 15px;
        padding: 35px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .type-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .type-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 32px;
    }
    
    .type-card h4 {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .type-card p {
        color: #666;
        line-height: 1.7;
    }
    
    .advantages-section {
        margin: 60px 0;
    }
    
    .advantages-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .advantage-item {
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .advantage-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
        font-size: 20px;
    }
    
    .advantage-text {
        color: #555;
        font-weight: 500;
        margin: 0;
    }
    
    .cta-section {
        background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
        color: white;
        padding: 60px 0;
        text-align: center;
        border-radius: 20px;
        margin: 60px 0;
    }
    
    .cta-section h3 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        background-color: white;
        color: var(--primary-color);
        border: none;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .cta-btn:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    }
    
    .cta-btn.whatsapp {
        background-color: #25D366;
        color: white;
    }
    
    .cta-btn.whatsapp:hover {
        background-color: #128C7E;
        color: white;
    }
    
    @media (max-width: 768px) {
        .service-page-header {
            padding: 80px 0 60px 0;
        }
        
        .service-page-header h1 {
            font-size: 2.2rem;
        }
        
        .service-content-section {
            padding: 60px 0;
        }
        
        .service-intro {
            padding: 30px 20px;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .feature-card {
            padding: 25px 20px;
        }
        
        .types-section {
            padding: 40px 0;
            margin: 40px 0;
        }
        
        .type-card {
            padding: 25px 20px;
            margin-bottom: 20px;
        }
        
        .advantages-list {
            grid-template-columns: 1fr;
        }
        
        .cta-section {
            padding: 40px 0;
            margin: 40px 0;
        }
        
        .cta-section h3 {
            font-size: 1.8rem;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }
