.school-vision-body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

.school-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.school-vision-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.school-vision-content {
    background: linear-gradient(135deg, #e8f7e8 0%, #d4f1d4 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.school-vision-category {
    color: #228118;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

.school-vision-heading {
    font-size: 48px;
    color: #1e3a5f;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.school-vision-description {
    color: #5a7a99;
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.school-vision-features {
    list-style: none;
    margin-bottom: 40px;
}

.school-vision-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.school-vision-checkmark {
    background: #228118;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
}

.school-vision-feature-text {
    color: #1e3a5f;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    padding-top: 2px;
}

.school-vision-feature-subtext {
    color: #5a7a99;
    font-size: 15px;
    margin-top: 8px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.school-vision-cta-button {
    background: #228118;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    align-self: flex-start;
}

.school-vision-cta-button:hover {
    background: #1a6512;
    transform: translateX(5px);
}

.school-vision-cta-button::after {
    content: '→';
    font-size: 20px;
}

.school-vision-image-section {
    background: url('/placeholder.svg?height=600&width=700') center/cover no-repeat;
    min-height: 500px;
    position: relative;
}

.school-vision-footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.school-vision-footer-text {
    color: #1e3a5f;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

.school-vision-phone-link {
    color: #1e3a5f;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 8px;
}

@media (max-width: 968px) {
    .school-vision-hero {
        grid-template-columns: 1fr;
    }

    .school-vision-content {
        padding: 40px 30px;
    }

    .school-vision-heading {
        font-size: 36px;
    }

    .school-vision-image-section {
        min-height: 400px;
    }
}


.vision-hero-section {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 60px 40px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-image-container {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.vision-photo-wrapper {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.1s ease-out;
}

.vision-photo-primary {
    width: 420px;
    height: 520px;
    top: 0;
    left: 0;
    z-index: 1;
}

.vision-photo-secondary {
    width: 360px;
    height: 440px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.vision-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vision-badge-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    animation: vision-float 3s ease-in-out infinite;
}

@keyframes vision-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.vision-rotating-badge {
    width: 120px;
    height: 120px;
    position: relative;
}

.vision-badge-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
    position: relative;
}

.vision-badge-icon {
    font-size: 40px;
    z-index: 2;
}

.vision-badge-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: vision-rotate 20s linear infinite;
}

@keyframes vision-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vision-badge-text span {
    position: absolute;
    left: 50%;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    transform-origin: 0 60px;
}

.vision-content-container {
    flex: 1;
    max-width: 600px;
}

.vision-hashtag {
    color: #10b981;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vision-main-heading {
    font-size: 56px;
    font-weight: 700;
    color: #303030;
    line-height: 1.1;
    margin-bottom: 40px;
    font-family: Georgia, 'Times New Roman', serif;
}

.vision-feature-item {
    margin-bottom: 40px;
}

.vision-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.vision-checkmark-icon {
    width: 48px;
    height: 48px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-checkmark-icon::after {
    content: '✓';
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.vision-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

.vision-feature-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-left: 64px;
}

.vision-cta-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.vision-cta-button {
    background: #065f46;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(6, 95, 70, 0.3);
}

.vision-cta-button:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 95, 70, 0.4);
}

.vision-cta-arrow {
    font-size: 20px;
}

.vision-contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vision-phone-icon {
    width: 56px;
    height: 56px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.vision-contact-details {
    display: flex;
    flex-direction: column;
}

.vision-contact-label {
    font-size: 14px;
    color: #6b7280;
}

.vision-phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
}

@media (max-width: 1024px) {
    .vision-hero-section {
        flex-direction: column;
        gap: 60px;
        padding: 40px 20px;
    }

    .vision-image-container {
        width: 100%;
        min-height: 500px;
    }

    .vision-photo-primary {
        width: 340px;
        height: 420px;
    }

    .vision-photo-secondary {
        width: 280px;
        height: 360px;
    }

    .vision-main-heading {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .vision-photo-primary {
        width: 280px;
        height: 360px;
    }

    .vision-photo-secondary {
        width: 220px;
        height: 280px;
    }

    .vision-main-heading {
        font-size: 36px;
    }

    .vision-cta-section {
        flex-direction: column;
        align-items: flex-start;
    }
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa !important;
}

/* ============================================
   HOE WERKT HET - CLEAN PROFESSIONAL DESIGN
   ============================================ */

.how-it-works-clean {
    padding: 5rem 2rem;
}

.how-it-works-clean .container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-clean h2 {
    font-size: 2.5rem;
    color: #0e3017;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.how-it-works-clean .intro-text {
    text-align: center;
    color: #0e3017;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    opacity: 0.9;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(14, 48, 23, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.step-card:hover {
    box-shadow: 0 6px 24px rgba(14, 48, 23, 0.12);
    transform: translateY(-2px);
}

.step-card-header {
    background: #f8f8f8;
    padding: 2rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 2px solid #fafafa;
}

.step-number-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0e3017 0%, #1a5a3a 100%);
    color: white;
    border: none;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(14, 48, 23, 0.2);
}

.step-number-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #e6c547 100%);
    color: #0e3017;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.step-number-btn:active {
    transform: scale(0.98);
}

.step-label {
    background: #d4af37;
    color: #0e3017;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

.step-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.step-card-title {
    font-size: 1.3rem;
    color: #0e3017;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.step-card-description {
    color: #5a7a99;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-card-description strong {
    color: #0e3017;
    font-weight: 600;
}

.step-card-button {
    align-self: flex-start;
    background: #228118;
    color: white;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.step-card-button:hover {
    background: #1a6b0d;
    transform: translateY(-2px);
}

.step-card-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works-clean {
        padding: 3rem 1.5rem;
    }

    .how-it-works-clean h2 {
        font-size: 2rem;
    }

    .how-it-works-clean .intro-text {
        font-size: 1rem;
    }

    .steps-grid {
        gap: 1.5rem;
    }

    .step-card-header {
        padding: 1.5rem 1.5rem 1rem;
        gap: 1rem;
    }

    .step-number-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-card-content {
        padding: 1.5rem;
    }

    .step-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .step-card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-clean {
        padding: 2rem 1rem;
    }

    .how-it-works-clean h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .how-it-works-clean .intro-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem 1rem;
        gap: 1rem;
    }

    .step-number-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin: 0 auto;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step-card-content {
        padding: 1.25rem;
    }

    .step-card-title {
        font-size: 1rem;
        text-align: center;
    }

    .step-card-description {
        font-size: 0.85rem;
        text-align: center;
    }

    .step-card-button {
        align-self: center;
    }
}