<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Services section */
.service-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.service-section:nth-child(even) {
    background-color: var(--bg-service);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-medium);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.service-text h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 15px;
}

/* Service features */
.service-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow-lighter);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h4 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-medium);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-light);
}

/* CTA section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-image {
        order: -1;
    }
}
</pre></body></html>