﻿.services-page {
    padding: 40px 20px;
    background-color: #f4f7fc;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.6s ease-in;
}

.services-hero {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.services-image {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    height: auto;
    flex: 1;
}

.services-text {
    flex: 1;
    padding: 40px;
}

    .services-text h1 {
        font-size: 2.2rem;
        color: #004aad;
        margin-bottom: 10px;
    }

    .services-text h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
        color: #222;
    }

    .services-text .tagline {
        font-style: italic;
        color: #444;
        margin-bottom: 20px;
    }

    .services-text p {
        font-size: 1rem;
        color: #333;
        line-height: 1.6;
        margin-bottom: 15px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .services-hero {
        flex-direction: column;
    }

    .services-text {
        padding: 20px;
    }
}
