.sp-diensten-wrapper-c5d64cd1 {
    --sp-primary-color: #046569;
    --sp-accent-color: #4EA7AB;
    --sp-text-color: #54595F;
    --sp-bg-light: #f9fafa;
    --sp-border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    color: var(--sp-text-color);
    line-height: 1.6;
}

.sp-diensten-wrapper-c5d64cd1 * {
    box-sizing: border-box;
}

.sp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-center {
    text-align: center;
}

.sp-h1, .sp-h2, .sp-h3 {
    margin-top: 0;
    font-weight: 600;
    color: #1a1a1a;
}

.sp-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sp-btn-primary {
    background-color: var(--sp-primary-color);
    color: #fff !important;
}

.sp-btn-primary:hover {
    background-color: var(--sp-accent-color);
}

.sp-btn-secondary {
    background-color: transparent;
    color: var(--sp-primary-color) !important;
    border: 2px solid var(--sp-primary-color);
}

.sp-btn-secondary:hover {
    background-color: var(--sp-primary-color);
    color: #fff !important;
}

/* Hero Section */
.sp-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    color: #fff;
    text-align: center;
}

.sp-hero .sp-h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.sp-hero .sp-h2-sub {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.sp-hero-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Section */
.sp-services-section {
    padding: 80px 0;
    background-color: #fff;
}

.sp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-section-header .sp-h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sp-subtitle {
    font-size: 1.1rem;
    color: var(--sp-text-color);
}

.sp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sp-service-card {
    background-color: var(--sp-bg-light);
    border: 1px solid #eee;
    border-radius: var(--sp-border-radius);
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sp-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--sp-accent-color);
}

.sp-card-icon {
    font-size: 40px;
    color: var(--sp-primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.sp-card-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--sp-primary-color);
}

.sp-service-card .sp-h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.sp-service-card:hover .sp-h3 {
    color: var(--sp-primary-color);
}

.sp-card-text {
    margin-bottom: 25px;
    flex-grow: 1;
}

.sp-card-link-text {
    font-weight: 600;
    color: var(--sp-accent-color);
    margin-top: auto;
}

/* Features Section */
.sp-features-section {
    padding: 80px 0;
    background-color: var(--sp-bg-light);
}

.sp-features-section .sp-h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.sp-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.sp-features-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 20px;
    background: #fff;
    border-radius: var(--sp-border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.sp-features-list svg {
    margin-right: 15px;
    flex-shrink: 0;
}

/* Final CTA */
.sp-final-cta {
    padding: 80px 0;
    background-color: #fff;
}

.sp-final-cta .sp-h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.sp-cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .sp-hero {
        padding: 80px 15px;
    }
    .sp-hero .sp-h1 {
        font-size: 2.5rem;
    }
    .sp-hero .sp-h2-sub {
        font-size: 1.2rem;
    }
    .sp-section-header .sp-h2,
    .sp-features-section .sp-h2 {
        font-size: 2rem;
    }
}