.service-page {
    font-family: 'Segoe UI', sans-serif;
    /* background: linear-gradient(to bottom, #f8fbff, #e6f0fa); */
    padding: 40px 20px;
}

/* Hero */
.service-hero {
    text-align: center;
    margin-bottom: 40px;
}
.service-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}
.service-hero p {
    font-size: 1.1rem;
    color: #555;
}

/* Service card */
.service-details {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
}
.service-card h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
}
.service-block {
    margin-bottom: 20px;
}
.service-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 5px;
}
.service-block p,
.service-block ul {
    font-size: 1rem;
    color: #444;
}
.service-block ul {
    list-style: none;
    padding-left: 0;
}
.service-block ul li::before {
    content: "✔";
    color: #007bff;
    margin-right: 8px;
}

/* CTA */
.service-cta {
    text-align: center;
    margin-top: 20px;
}
.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.cta-btn:hover {
    background: #0056b3;
}
