.services-page-bg {
    background-color: #10222C;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 14px);
    min-height: 100vh;
    padding-top: 60px;
}
.services-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.founding-banner {
    background: #142A38;
    border-left: 3px solid #4FB3A0;
    border-radius: 8px;
    padding: 24px 30px;
    margin-bottom: 50px;
    text-align: center;
}
.founding-banner p {
    color: #C9D9DE;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}
.founding-banner p:last-child { margin-bottom: 0; }
.founding-banner strong { color: #4FB3A0; }

.services-wrap .page-header { text-align: center; margin-bottom: 50px; }
.services-wrap .title-line-wrap { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 16px; }
.services-wrap .title-line { width: 180px; max-width: 20vw; height: 1px; background: rgba(255,255,255,0.4); }
.services-wrap .page-header h1 { color: #FFFFFF; font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0; white-space: nowrap; }

.employment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}
.employment-card {
    background: #1B3A4B;
    border-top: 3px solid #2E8B7A;
    border-radius: 12px;
    padding: 30px 26px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.employment-card-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}
.employment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.employment-card h3 {
    color: #4FB3A0;
    font-size: 18px;
    margin-bottom: 14px;
}
.employment-card > p {
    color: #C9D9DE;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}
.employment-btn {
    display: inline-block;
    background: #F4F8FA;
    color: #1B3A4B;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}
.employment-btn:hover { background: #4FB3A0; color: #FFFFFF; }
.employment-btn-muted {
    background: #2E4A5A;
    color: #8FA89C;
}

.employment-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    text-align: left;
    width: 100%;
}
.employment-card.expanded .employment-details {
    max-height: 600px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2E4A5A;
}
.employment-details p {
    color: #C9D9DE;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}
.employment-details strong { color: #4FB3A0; }

@media (max-width: 600px) {
    .services-wrap .title-line { width: 40px; }
    .services-wrap .page-header h1 { font-size: 24px; white-space: normal; }
}