.container-fluid.main-content.services {
    padding: 2rem;
    max-width: 1200px;
}

.header-service-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.header-service-text {
    flex: 1;
    margin-right: 1rem;
}

.header-service-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0;
    color: white;
}

.header-service-text p {
    color: white;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    max-width: 500px;
}

.btn-get-started {
    background-color: #5c9344;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background-color: #247a3e;
    color: #fff;
}

.card-service {
    background-color: #3d6b2e;
    padding: 2rem;
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.card-service:hover {
    transform: translateY(-5px) rotateZ(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #5c9344;
}

.card-service.dark {
    background-color: #3d6b2e;
    color: #fff;
}

.card-service.dark:hover {
    transform: translateY(-5px) rotateZ(-2deg);
    background-color: #3d6b2e;
}

.card-service.dark h4,
.card-service.dark p,
.card-service.dark a {
    color: #fff;
}

.card-service h4 {
    font-weight: 700;
    margin-top: 1rem;
    color: white;
}

.card-service p {
    color: white;
    font-size: 0.9rem;
}

.card-service .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    margin-top: 1rem;
}

.card-service.dark .learn-more {
    color: #90ee90;
}

.card-service .learn-more:hover {
    color: #1e6c34;
}

.card-service.dark .learn-more:hover {
    color: #c6f6d5;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.card-service.dark .icon {
    color: #fff;
}

/* Mobile-first adjustments */
@media (max-width: 768px) {
    .header-service-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-service-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .btn-get-started {
        width: 100%;
        text-align: center;
    }
}