:root {
    --primary-color: #3478F6;
    --secondary-color: #333;
    --accent-color: #3478F6;
    --background-color: #f5f7fa;
    --text-color: #333;
    --text-secondary: #555;
    --gray-light: #eef1f5;
    --gray-medium: #9ba3af;
    --gray-dark: #4a5568;
    --newmotion-color: #9FE870;
    --happatape-color: #0071e3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background-color);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-contact-button {
    display: inline-block;
    background: #3478F6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background-color 0.2s ease;
}

.nav-contact-button:hover {
    background: #2461D7;
}

.nav-contact-button:active {
    background: #1D4FB8;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--gray-light), var(--background-color));
    position: relative;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.hero-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-button:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.85);
}

.nav-button:active {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.9);
}

.nav-text {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.hero .hero-image {
    width: 180px !important;
    height: 180px !important;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.hero .profile-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image::before,
.hero-image::after {
    display: none;
}

.section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.education {
    margin-top: 3rem;
}

.education h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.education ul {
    list-style: none;
}

.education li {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.education li:hover {
    transform: translateY(-2px);
}

.education .year {
    color: var(--accent-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.education .institution {
    color: var(--gray-medium);
    display: block;
    margin-top: 0.25rem;
}

.education .location, 
.education .duration {
    color: var(--gray-medium);
    display: block;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.education .description {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

.education .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.education .skills span {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-2px);
}

.experience-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.experience-item .company {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.experience-item .period {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.company-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--gray-light);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.company-card.featured {
    position: relative;
    color: white;
    overflow: hidden;
}

.company-card.featured.newmotion {
    background: white;
}

.company-card.featured.happatape {
    background: white;
}

.company-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 20px 20px 0 0;
}

.company-logo {
    width: 150px;
    max-height: 120px;
    object-fit: contain;
    margin: 1rem 0;
    border-radius: 50%;
}

.company-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

.company-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: black;
}

.company-content p {
    color: black;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.company-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    color: black;
    font-size: 0.9rem;
}

.company-meta .role {
    font-weight: 600;
    color: black;
}

.company-meta .period {
    font-size: 0.85rem;
    opacity: 0.8;
}

.company-stats {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.stat-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.company-card.featured .company-tags span {
    background: rgba(255, 255, 255, 0.15);
    color: black;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.company-links {
    margin-top: 1.5rem;
}

.company-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: #0071e3;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.company-card.featured.newmotion .company-link {
    color: white;
}

.company-card.featured.newmotion .company-link:hover {
    background: #0071e3;
    transform: translateY(-2px);
}

.company-card.featured.happatape .company-link {
    color: white;
}

.company-card.featured.happatape .company-link:hover {
    background: #0071e3;
    transform: translateY(-2px);
}

.skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.skills span {
    background: var(--background-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.skill-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.skill-category li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-email {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin: 1rem 0;
    font-weight: 500;
}

.contact-button {
    display: inline-block;
    background: #3478F6;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    margin: 1rem 0;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background: #2461D7;
}

.contact-button:active {
    background: #1D4FB8;
}

.location {
    color: var(--gray-medium);
    margin-top: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-light);
    color: var(--gray-medium);
}

.portfolio-section {
    margin-bottom: 4rem;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.portfolio-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--gray-light);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.02);
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    min-height: 280px; /* Voeg een minimum hoogte toe */
}

.portfolio-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.portfolio-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: auto; /* Duwt de read-more naar beneden */
    flex: 1;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags span {
    background: var(--background-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.portfolio-meta {
    display: flex;
    justify-content: flex-start;
    margin: 1.5rem 0;
}

.app-store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: #3478F6;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    width: auto;
    min-width: 200px;
}

.app-store-link:hover {
    background: #2461D7;
}

.scroll-button {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    opacity: 0.6;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-button:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
    animation: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .portfolio-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.375rem 0;
    }

    .nav-content {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 0;
    }

    .nav-contact-button {
        padding: 0.4rem 1rem;
        font-size: 0.8125rem;
    }

    .logo {
        font-size: 1.125rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        width: 160px;
        height: 160px;
        margin-bottom: 1.5rem;
    }

    .hero-navigation {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .nav-button {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .portfolio-section h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .portfolio-content h4 {
        font-size: 1.25rem;
    }

    .portfolio-content p {
        font-size: 0.9375rem;
    }

    .portfolio-tags span {
        font-size: 0.8125rem;
        padding: 0.375rem 0.875rem;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-logo {
        width: 120px;
    }
    
    .company-content {
        padding: 1.5rem;
    }

    .contact-email {
        font-size: 1rem;
    }

    .contact-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
    }
}

/* Add smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-contact-button {
    display: inline-block;
    background: #3478F6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background-color 0.2s ease;
}

.nav-contact-button:hover {
    background: #2461D7;
}

.nav-contact-button:active {
    background: #1D4FB8;
}

.portfolio-item.whatthehealth {
    background: var(--gray-light);
    position: relative;
}

.app-banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.app-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.portfolio-item.whatthehealth .portfolio-content {
    background: var(--gray-light);
    border-radius: 0 0 20px 20px;
    padding-top: 1.5rem;
}

.portfolio-item.newmotion {
    background: var(--gray-light);
    position: relative;
}

.portfolio-item.newmotion .app-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-item.newmotion .portfolio-content {
    background: var(--gray-light);
    border-radius: 0 0 20px 20px;
    padding-top: 1.5rem;
}

.newmotion-banner, 
.newmotion-banner::before,
.newmotion-banner::after {
    display: none;
}

@media (max-width: 768px) {
    .newmotion-banner {
        height: 250px;
    }
    
    .newmotion-banner::before {
        background-position: center 30px;
        background-size: 100px;
    }
    
    .newmotion-banner::after {
        top: 100px;
    }
}

/* Project detail page styles */
.project-detail {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 0 2rem;
}

.project-header {
    text-align: center;
    margin-bottom: 3rem;
}

.project-banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.project-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
}

.project-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Make portfolio items clickable */
.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-link:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .project-detail {
        margin-top: 80px;
        padding: 0 1rem;
    }

    .project-header h1 {
        font-size: 2rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-description {
        font-size: 1rem;
    }
}

/* Back button styles */
.back-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.back-button:active {
    transform: scale(0.95);
}

/* Adjust project detail margin for back button */
.project-detail {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .back-button {
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }

    .back-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Project Page Styles */
.project-page {
    background: #f5f5f7;
}

.project-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 60px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}

.gradient-text {
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(135deg, #3478F6 0%, #6b47ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 32px;
    color: #1d1d1f;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.parallax {
    transform: translateY(var(--scroll-offset, 0));
}

.project-section {
    padding: 120px 2rem;
    margin: 0 auto;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    color: #1d1d1f;
    margin-bottom: 2rem;
    text-align: center;
}

.large-text {
    font-size: 24px;
    line-height: 1.5;
    color: #1d1d1f;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    display: grid;
    gap: 3rem;
    margin: 4rem 0;
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.timeline-item h3 {
    font-size: 24px;
    color: #3478F6;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-item h3 {
    font-size: 24px;
    color: #3478F6;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #3478F6 0%, #6b47ff 100%);
    color: white;
}

.cta-section .section-title,
.cta-section .large-text {
    color: white;
}

.app-store-button {
    display: inline-block;
    background: white;
    color: #3478F6;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.app-store-button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .large-text {
        font-size: 18px;
    }

    .project-section {
        padding: 60px 1rem;
    }
}

/* Additional Project Page Styles */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-left {
    font-size: 48px;
    color: #1d1d1f;
    margin-bottom: 2rem;
    text-align: left;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.tech-item h3 {
    color: #3478F6;
    margin-bottom: 1.5rem;
}

.tech-item ul {
    list-style: none;
    padding: 0;
}

.tech-item li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-item li::before {
    content: "•";
    color: #3478F6;
    position: absolute;
    left: 0;
}

.design-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.design-stage {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3478F6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 18px;
    color: #1d1d1f;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.lesson-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.lesson-item h3 {
    color: #3478F6;
    margin-bottom: 1.5rem;
}

.lesson-item ul {
    list-style: none;
    padding: 0;
}

.lesson-item li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.lesson-item li::before {
    content: "•";
    color: #3478F6;
    position: absolute;
    left: 0;
}

.date {
    font-size: 14px;
    color: #3478F6;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .lessons-grid {
        grid-template-columns: 1fr;
    }

    .section-title-left {
        font-size: 36px;
        text-align: center;
    }
}

/* Motivation Grid Styles */
.motivation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.motivation-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.motivation-item h3 {
    font-size: 24px;
    color: #3478F6;
    margin-bottom: 1rem;
}

.motivation-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #1d1d1f;
}

/* Learning Journey Styles */
.learning-container {
    margin-top: 3rem;
}

.learning-main {
    margin-bottom: 4rem;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.learning-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.learning-item h3 {
    font-size: 24px;
    color: #3478F6;
    margin-bottom: 1.5rem;
}

.learning-item ul {
    list-style: none;
    padding: 0;
}

.learning-item li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 16px;
    color: #1d1d1f;
}

.learning-item li::before {
    content: "→";
    color: #3478F6;
    position: absolute;
    left: 0;
}

@media (max-width: 968px) {
    .motivation-grid {
        grid-template-columns: 1fr;
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #1d1d1f;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 14px;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Zorg ervoor dat de project-hero relative positioning heeft voor de absolute positioning van de scroll indicator */
.project-hero {
    position: relative;
}

/* Hide scroll indicator when scrolling down */
.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #3478F6, #6b47ff);
    z-index: 1001;
    transition: width 0.1s ease;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1.5rem; /* Voeg wat ruimte toe boven de knop */
    transition: transform 0.2s ease;
}

.read-more svg {
    transition: transform 0.2s ease;
}

.portfolio-item:hover .read-more {
    transform: translateX(4px);
}

.portfolio-item:hover .read-more svg {
    transform: translateX(4px);
}