/**
 * Service & Service-Area Pages Styling
 */

.service-page,
.service-area-page {
    padding: 60px 0;
    background: #F8FAFC;
    min-height: 60vh;
}

.service-page .container,
.service-area-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-page h1,
.service-area-page h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    text-align: center;
}

.service-page > .container > p,
.service-area-page > .container > p {
    font-size: 18px;
    color: #64748B;
    text-align: center;
    margin-bottom: 40px;
}

.service-content {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1E293B;
    margin: 30px 0 20px 0;
    border-bottom: 3px solid #0066CC;
    padding-bottom: 10px;
}

.service-content h2:first-child {
    margin-top: 0;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #475569;
    margin: 25px 0 15px 0;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-content ul li {
    font-size: 16px;
    color: #475569;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
}

.service-content ul li:last-child {
    border-bottom: none;
}

.cta-section {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #FFFFFF;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .service-page h1,
    .service-area-page h1 {
        font-size: 28px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .service-content h2 {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
