/* =========================================================
   GLOBAL SERVICE PAGE BASE
   ========================================================= */
.service-page {
    font-family: 'Lora', sans-serif; /* match landing page */
    color: #111;
    line-height: 1.7;
    font-size: 18px; /* base font size */
}

/* =========================================================
   UNIVERSAL SECTION SPACING
   ========================================================= */
.service-page .section {
    padding: 80px 0; /* top + bottom */
}

.service-page .section-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* left + right padding */
}

/* =========================================================
   BACKGROUND COLORS 
   ========================================================= */
.service-page .white {
    background: #ffffff;
}

.service-page .grey {
    background: #f5f5f5;
}

.service-page .navy {
    background: #0a1a3c;
    color: white;
}

/* =========================================================
   HERO SECTION 
   ========================================================= */
.service-page .hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1a3c, #0f2a5c);
    color: white;
}

.service-page .hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-page .hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-page .hero-text p {
    font-size: 20px;
    max-width: 600px;
    opacity: 0.9;
}

/* =========================================================
   HEADINGS 
   ========================================================= */
.service-page h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1D2E5C;
}

.service-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* =========================================================
   PARAGRAPHS
   ========================================================= */
.service-page p {
    font-size: 20px;
    margin-bottom: 16px;
}

/* =========================================================
   GRID SYSTEM 
   ========================================================= */
.service-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-page .service-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.service-page .service-card:hover {
    transform: translateY(-10px);
    border-color: #1D2E5C;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* =========================================================
   BUTTONS 
   ========================================================= */
.service-page .btn-primary {
    background: rgba(61, 95, 184, 0.15); 
    border: 2px solid rgba(61, 95, 184, 0.55); 
    color: #5E82E0; 
    box-shadow: 0 6px 18px rgba(61, 95, 184, 0.25); 
}

.service-page .btn-primary:hover { 
    background: rgba(61, 95, 184, 0.28); 
    border-color: #90AAF0; 
    color: white; 
    transform: translateY(-6px); 
    box-shadow: 0 12px 28px rgba(61, 95, 184, 0.45);
}

.service-page .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(61, 95, 184, 0.25); 
}

.service-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #5E82E0;
    color: #90AAF0;
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(61, 95, 184, 0.45);
}

/* =========================================================
   FOOTER
   ========================================================= */
.service-page .footer {
    background: #1D2E5C;
    color: white;
    padding: 40px 60px;
}

.service-page .disclaimer {
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
   MOBILE RESPONSIVE FIX
   ========================================================= */
@media (max-width: 900px) {

    /* Section spacing */
    .service-page .section {
        padding: 60px 0;
    }

    .service-page .section-inner {
        width: 90%;
    }

    /* Hero */
    .service-page .hero {
        padding: 100px 0;
        text-align: center;
    }

    .service-page .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .service-page .hero-text h1 {
        font-size: 32px;
    }

    .service-page .hero-text p {
        font-size: 16px;
        max-width: 100%;
    }

    /* Headings */
    .service-page h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .service-page h3 {
        font-size: 18px;
    }

    /* Paragraphs */
    .service-page p {
        font-size: 16px;
    }

    /* Grid becomes single column */
    .service-page .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Cards tighter padding */
    .service-page .service-card {
        padding: 20px;
    }

    /* Footer */
    .service-page .footer {
        padding: 30px 24px;
    }

}