﻿body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7fafd;
    color: #333;
}

/* Header */
.main-header {
    background-color: #195fb7;
  
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background: #2460b9 url(../Images/header.png) no-repeat right bottom;
    width: 100%;
    color: #fff;
}

    .main-header .left {
        display: flex;
        align-items: center;
    }

    .main-header .logo {
        width: 80px;
        margin-right: 1rem;
    }

    .main-header .text h3, .main-header .text h4, .main-header .text p {
        margin: 2px 0;
    }

    .main-header .right {
        text-align: right;
        font-size: 0.9rem;
    }

/* Title */
.title-bar {
    background: #e3f0ff;
    text-align: center;
    padding: 2rem 1rem;
}

    .title-bar h2 {
        margin: 0;
        font-size: 2rem;
        color: #195fb7;
    }

    .title-bar p {
        margin-top: 0.5rem;
        font-size: 1rem;
        color: #555;
    }

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
}

    .service-card img {
        width: 130px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        color: #195fb7;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .service-card a {
        display: inline-block;
        margin-top: 1rem;
        background: #195fb7;
        color: white;
        padding: 0.4rem 1rem;
        text-decoration: none;
        border-radius: 5px;
    }

/* Footer */
.footer {
    background: #195fb7;
    color: white;
    text-align: center;
    padding: 1rem;
}
