﻿/* Service Page Styling */
.service-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 150px 20px;
    text-align: center;
    margin-bottom: 40px;
}

    .service-hero h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .service-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.service-section {
    margin-bottom: 50px;
}

    .service-section h2 {
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #3498db;
    }

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.feature-card {
    flex: 1 1 300px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .feature-card h3 {
        color: #3498db;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

.service-process {
    background: #eef5ff;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
}

.process-step {
    flex: 0 1 200px;
    text-align: center;
    margin: 15px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.cta-section {
    text-align: center;
    background: #2c3e50;
    color: white;
    padding: 60px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: background 0.3s ease;
}

    .cta-button:hover {
        background: #c0392b;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        padding: 130px 15px;
    }

        .service-hero h1 {
            font-size: 2.2rem;
        }

    .service-process {
        padding: 25px;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }

    .service-section h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        flex: 1 1 100%;
    }
}
