﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.services-section {
    padding: 60px 80px;
    background-color: #fff;
}

.services-title {
    color: #175BA7;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: left;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.service-card {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.service-image {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-description {
    font-size: 1.4rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
}

.service-button {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .service-button.btn-green {
        background-color: #C8D952;
        color: #175BA7;
    }

        .service-button.btn-green:hover {
            background-color: #175BA7;
            color: #C8D952;
        }

    .service-button.btn-blue {
        background-color: #175BA7;
        color: white;
    }

        .service-button.btn-blue:hover {
            background-color: white;
            color: #175BA7;
            border: 1px solid #175BA7;
        }

/* What is section */
.what-is-wrapper-full {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background-color: #EDEDED;
    padding: 60px 40px;
    text-align: left;
}

.what-is-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #175BA7;
}

.what-title {
    margin: 0;
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.2;
}

.what-highlight {
    margin-top: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.replacement-image {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 30px 20px;
    }

    .services-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .services-cards {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        width: 100%;
    }

    .service-image,
    .service-description {
        max-width: 100%;
    }

    .service-button {
        font-size: 1.2rem;
    }

    .what-is-wrapper-full {
        padding: 40px 20px;
    }

    .what-is-content {
        padding: 0;
        text-align: center;
    }

    .what-title,
    .what-highlight {
        text-align: center;
    }

    .replacement-image {
        max-width: 100%;
        margin-top: 20px;
    }
}
