/* ================================
   Just Pro Service Global Styles
   ================================ */

/* === Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geologica', sans-serif;
    color: #333;
    background-color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

/* === Containers === */
.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

section {
    padding: 30px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5 {
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(32px, 6vw, 48px);
}

h2 {
    font-size: clamp(28px, 5vw, 40px);
}

h3 {
    font-size: 24px;
}

h4, h5 {
    font-size: 20px;
}

p {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

a {
    color: #1E3A8A;
    text-decoration: none;
}


/* ===========================
   Buttons
   =========================== */
.button,
.blue-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 25px;
    background-color: #1E3A8A;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.button:hover,
.blue-button:hover {
    background-color: #2149BA;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.blue-button-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

/* ===========================
   Cards & Info Boxes
   =========================== */
.card,
.info-box {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover,
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-content,
.info-box__description {
    padding: 30px;
}

.info-box__title {
    background-color: #1E3A8A;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .info-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-boxes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Lists
   =========================== */
ul {
    margin: 5px 0;
}

ul li {
    margin-bottom: 10px;
   
}

ul li::marker {
    color: #1E3A8A;
}

/* ===========================
   Dividers
   =========================== */
.divider {
    height: 1px;
    background-color: #ddd;
    margin: 40px 0;
}

.divider--bold {
    height: 3px;
    background-color: #1E3A8A;
    width: 60px;
    margin: 40px auto;
}

/* ===========================
   Breadcrumbs
   =========================== */
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: #888;
}

.breadcrumbs a {
    color: #1E3A8A;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}


/* ===========================
   Service Banner
   =========================== */
.service-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: rgb(30, 58, 138);
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0px;
}

.service-banner__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 10px;
}

.service-banner__content {
    flex: 1 1 50%;
    max-width: 600px;
    margin: 0 0 0 40px;
}

.service-banner__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.service-banner__subtitle {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.service-banner__description {
    font-size: 18px;
    line-height: 1.5;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.service-banner__image {
    position: relative;
    width: 50%;
}

.service-banner__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-banner__image img:hover {
    transform: scale(1.03);
}

@media screen and (max-width: 1300px) {
    .service-banner__container {
        flex-direction: row;
    }

    .service-banner__content {
        flex: 1 1 40%;
    }

    .service-banner__image {
        flex: 1 1 40%;
    }
}

@media screen and (max-width: 768px) {
    .service-banner__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-banner__content,
    .service-banner__image {
        flex: 1 1 100%;
        width: 100%;
        margin: auto;
    }

    .service-banner__image {
        margin-top: 30px;
    }
}

/* ===========================
   Responsive Typography
   =========================== */
@media (max-width: 1200px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    .container {
        padding: 0 10px;
    }
}

/* ===========================
   CSS Variables (Optional)
   =========================== */
:root {
    --color-primary: #1E3A8A;
    --color-secondary: #2149BA;
    --color-light: #F9F9F9;
    --color-dark: #333;
    --color-white: #fff;
}
