.services-top-hero {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.services-top-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.services-top-hero p {
    font-size: 1rem;
    color: #d1d5db;
}

.services-section-body {
    padding: 80px 0 40px;
    text-align: center;
    background-color: #ffffff;
}

.services-section-body h3 {
    font-size: 2.2rem;
    color: #0b1521;
    margin-bottom: 10px;
}

.services-section-body p.subtitle {
    color: #6b7280;
    margin-bottom: 50px;
    font-size: 1rem;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
    margin-bottom: 80px;
}

.service-card-large {
    background: #fff;
    padding: 40px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card-large .card-icon {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card-large h4 {
    font-size: 1.3rem;
    color: #0b1521;
    margin-bottom: 4px;
}

.service-card-large .card-subtext {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card-large p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card-large .bold-highlight {
    font-weight: 700;
    color: #0b1521;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.check-list-custom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.check-list-custom li {
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.check-list-custom li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0d1b2a;
    font-weight: bold;
}

.additional-capabilities-section {
    padding: 40px 0 80px;
    background-color: #fafafa;
    text-align: center;
}

.additional-capabilities-section h3 {
    font-size: 1.8rem;
    color: #0b1521;
    margin-bottom: 10px;
}

.services-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.service-card-small {
    background: #fff;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card-small .icon {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card-small h4 {
    font-size: 1.1rem;
    color: #0b1521;
    margin-bottom: 8px;
}

.service-card-small p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;
}

.btn-orange {
    background-color: #f05a30;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #d94b24;
}

.cta-banner {
    background-color: #1a252c;
    color: #fff;
}

.cta-banner h3 {
    color: #fff;
}

.cta-banner p {
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 900px) {

    .services-grid-large,
    .services-grid-small {
        grid-template-columns: 1fr;
    }

    .services-top-hero h2 {
        font-size: 1.8rem;
    }
}