body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #6e6e6e;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.services-header {
    background: #ffffff;
    padding: 0 0 60px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 15px 30px;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.logo {
    position: static;
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

nav a {
    color: #6e6e6e;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s;
}

nav a:hover {
    background: #f0f0f0;
}

.services-intro {
    margin: 120px 30px 0;
    max-width: 800px;
}

.services-title {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    color: #499c9c;
    line-height: 1.15;
}

.services-subtitle {
    margin: 12px 0 0;
    font-size: 18px;
    color: #6e6e6e;
    line-height: 1.7;
}

.services-hero-section {
    padding: 90px 30px 60px;
    margin: 20px auto 0;
    max-width: 1180px;
}

.services-hero-copy {
    max-width: 760px;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    justify-content: flex-start;
}

.services-hero-line {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: #6e6e6e;
}

.services-hero-highlight {
    color: #499c9c;
}

.services-support-text {
    margin: 24px 0 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.8;
    color: #6e6e6e;
    font-weight: 400;
}

.services-image-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.services-icons-image {
    display: block;
    width: min(100%, 320px);
    height: auto;
    margin-top: 0;
}

.services-icons-main {
    width: min(100%, 620px);
}

.services-human-image {
    margin-left: 8px;
    width: min(100%, 430px);
}

.services-grid-section {
    padding: 40px 30px 80px;
    margin: 20px auto 0;
    max-width: 1180px;
}

.services-grid-title {
    text-align: center;
    margin: 0 0 28px;
    font-size: 28px;
    font-weight: 700;
    color: #499c9c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 280px));
    gap: 24px 26px;
    justify-content: center;
    align-items: start;
}

.service-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-item img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 280px;
    object-fit: contain;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-item-specialized img {
    height: 360px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(180px, 220px));
    }
}

@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background: #499c9c;
    color: #ffffff;
    padding: 96px 30px 36px;
    text-align: center;
    width: 100%;
    margin-top: 60px;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-heading,
.footer-desc,
.footer-trust {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 520px;
}

.footer-heading {
    font-weight: 700;
}

.footer-desc,
.footer-trust {
    font-weight: 400;
}

.footer-schedule-btn {
    display: inline-block;
    background: #ffffff;
    color: #499c9c;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    background: #f0f0f0;
    color: #3f8787;
}

.footer-copy {
    margin: 16px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    font-size: 13px;
    opacity: 0.9;
}
