.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: -2rem;
}

/* ...existing code... */

.about-header {
    height: 300px; /* Reduced from 400px */
    background-color: var(--pink);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    width: 100%;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    opacity: 0.15;
    animation: floatShape 20s infinite linear;
}

.floating-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 5rem;
    content: '❤️';
    animation-delay: -5s;
}

.floating-shape:nth-child(2) {
    top: 60%;
    right: 15%;
    font-size: 4rem;
    content: '✨';
    animation-delay: -10s;
}

.floating-shape:nth-child(3) {
    bottom: 20%;
    left: 30%;
    font-size: 6rem;
    content: '🌟';
    animation-delay: -15s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.header-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header-content h1 {
    font-size: 3rem; /* Slightly reduced from 3.5rem */
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem; /* Slightly reduced from 1.4rem */
}

.personal-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.1);
}

.profile-image {
    width: 100%;
    max-width: 400px;
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    position: relative; /* Voeg position: relative toe */
    border: 5px solid transparent; /* Voeg een transparante rand toe */
    transition: border-color 0.3s ease; /* Voeg een overgang toe voor de randkleur */
}

.profile-image:hover {
    border-color: rgba(254, 111, 179, 0.5); /* Verander de randkleur bij hover */
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 111, 179, 0.3), rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px; /* Zorg ervoor dat de achtergrond hetzelfde afgeronde effect heeft */
}

.profile-image:hover::before {
    opacity: 1;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    background: transparent;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.intro-text {
    position: relative;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.intro-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
}

.values-section {
    padding: 2rem 0; /* Verminder de padding boven en onder */
    margin: 2rem -2rem 6rem -2rem; /* Verminder de marge boven en voeg extra marge onder toe */
    background: linear-gradient(135deg,
        rgba(254, 111, 179, 0.03) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(254, 111, 179, 0.03) 100%);
    text-align: center;
}

.values-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--pink);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem; /* Vergroot de ruimte tussen de blokken */
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(254, 111, 179, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-item h3 {
    font-size: 1.1rem;
    color: var(--pink);
    margin-bottom: 0.3rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink);
    color: white;
    padding: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(254, 111, 179, 0.15);
}

.value-item:hover .value-description {
    opacity: 1;
    transform: translateY(0);
}

.value-item:hover h3 {
    opacity: 0;
    transform: translateY(-10px);
}

.values-outro {
    max-width: 800px;
    margin: 2rem auto 0; /* Vergroot de marge boven */
    padding: 0 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.personality-cards {
    margin: 4rem 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.personality-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(254, 111, 179, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.personality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(254, 111, 179, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.personality-card h3 {
    font-size: 1.4rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.personality-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.fun-element {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--pink);
    border-radius: 20px;
    color: white;
}

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

.back-home {
    display: inline-block;
    background-color: var(--pink);
    color: #333;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    margin: 2rem;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: var(--pink-dark);
}

@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .content-block {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin: 3rem 0;
        padding: 2rem;
        text-align: center;
    }

    /* Fix voor de volgorde van titel en tekst */
    .content-block .text-left,
    .content-block .text-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* Zorg dat de titel altijd eerst komt */
    .content-block h2 {
        order: -1 !important;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Reset andere order properties */
    .content-block .text-left,
    .content-block .text-right {
        order: initial;
    }

    /* Speciale styling voor afbeeldingen */
    .profile-image,
    .home-image {
        max-width: 250px;
        margin: 2rem auto;
        order: 1;
    }

    /* Tekst komt na de titel maar voor de afbeelding */
    .content-block p {
        order: 0;
    }

    /* Specifieke styling voor "Mijn passie" sectie */
    .content-block .text-left h2 {
        order: -2 !important;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .content-block .text-right {
        order: -1;
    }

    .content-block .text-left {
        order: 0;
    }

    .text-left, .text-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* Centreer de underline */
    .text-left h2::after,
    .text-right h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .personality-section {
        margin: 2rem 0; /* Verminder de marge boven en onder */
        padding: 2rem;
        width: 100%;
    }

    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .personality-card {
        min-height: 220px;
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .personality-card h3 {
        font-size: 1.2rem;
    }

    .personality-card p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cards-container {
        gap: 1rem;
    }

    .personality-card {
        min-height: 200px;
        padding: 1.25rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 1rem;
    }
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: -10rem; /* Verander de marge bovenaan om het blok dichter bij de banner te brengen */
}

.content-block {
    padding: 3rem;
    margin: 1rem 0; /* Verminder de ruimte tussen de blokken */
    background: linear-gradient(135deg,
        rgba(254, 111, 179, 0.02) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(254, 111, 179, 0.02) 100%);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.05);
}

.content-block:first-child {
    margin-top: 6rem;
}

.content-block:last-child {
    margin-bottom: 6rem;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.text-left h2 {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 2.5rem;
    position: relative;
}

.text-left h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--pink);
}

.text-right p, .text-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.values-section h2,
.personality-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.personality-section {
    margin: 8rem 0; /* Vergroot de marge boven en onder */
    padding: 2rem;
    width: 100%;
}

.personality-section {
    margin: 4rem 0; /* Verminder de marge boven en onder */
    padding: 2rem;
    width: 100%;
}

.contact-footer {
    background: none;  /* Verwijder de gradient achtergrond */
    padding: 3rem 0.5rem;
    margin-top: 6rem;
    text-align: center;
    position: relative;
}

.personality-section h2 {
    text-align: center; /* Zorg ervoor dat de titel in het midden staat */
    margin-bottom: 2rem;
}

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

.content-wrapper h2 {
    color: var(--pink);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.content-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.text-content {
    flex: 1;
}

.profile-image,
.home-image {
    flex: 0 0 40%;
    max-width: 400px;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .content-block {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin: 3rem 0;
        padding: 2rem;
        text-align: center;
    }

    /* Fix voor de volgorde van titel en tekst */
    .content-block .text-left,
    .content-block .text-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* Zorg dat de titel altijd eerst komt */
    .content-block h2 {
        order: -1 !important;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Reset andere order properties */
    .content-block .text-left,
    .content-block .text-right {
        order: initial;
    }

    /* Speciale styling voor afbeeldingen */
    .profile-image,
    .home-image {
        max-width: 250px;
        margin: 2rem auto;
        order: 1;
    }

    /* Tekst komt na de titel maar voor de afbeelding */
    .content-block p {
        order: 0;
    }

    /* Specifieke styling voor "Mijn passie" sectie */
    .content-block .text-left h2 {
        order: -2 !important;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .content-block .text-right {
        order: -1;
    }

    .content-block .text-left {
        order: 0;
    }

    .text-left, .text-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* Centreer de underline */
    .text-left h2::after,
    .text-right h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .personality-section {
        padding: 3rem 1rem;
        margin-top: 4rem;
    }

    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .personality-card {
        padding: 2rem 1.5rem;
        min-height: 220px;
    }

    .card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .personality-card h3 {
        font-size: 1.2rem;
    }

    .personality-card p {
        font-size: 1rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .content-wrapper h2 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .content-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .profile-image,
    .home-image {
        max-width: 250px;
        margin: 0 auto;
        order: 2;
    }

    .text-content {
        order: 1;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .personality-card {
        padding: 1.5rem;
        min-height: 200px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 1rem;
    }
}

/* Content block base styling */
.content-block {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg,
        rgba(254, 111, 179, 0.02) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(254, 111, 179, 0.02) 100%);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.05);
}

/* Even/oneven content blocks hebben verschillende layouts */
.content-block:nth-child(odd) {
    grid-template-areas: "title content";
}

.content-block:nth-child(even) {
    grid-template-areas: "content title";
}

.content-block h2 {
    grid-area: title;
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 2.5rem;
}

.content-block .text-content {
    grid-area: content;
}

/* Mobile styling */
@media (max-width: 768px) {
    .content-block {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .content-block:nth-child(odd),
    .content-block:nth-child(even) {
        grid-template-areas: initial;
    }

    .content-block h2 {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .content-block .text-content {
        order: 0;
    }

    .content-block .profile-image,
    .content-block .home-image {
        order: 1;
        max-width: 250px;
        margin: 0 auto;
    }

    /* Centreer de titel underline op mobiel */
    .content-block h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Nieuwe content block styling */
.content-block {
    position: relative;
    padding: 4rem 2rem;
    margin: 6rem 0;
    background: linear-gradient(135deg,
        rgba(254, 111, 179, 0.02) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(254, 111, 179, 0.02) 100%);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.05);
}

/* Titel styling */
.content-block h2 {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--pink);
}

/* Content flex container */
.content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Afwisselende layout voor even/oneven blocks */
.content-block:nth-child(even) .content-flex {
    direction: rtl;
}

.content-block:nth-child(even) .content-flex > * {
    direction: ltr;
}

/* Image styling */
.profile-image,
.home-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(254, 111, 179, 0.2);
    margin: 0 auto;
}

.profile-image img,
.home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image:hover img,
.home-image:hover img {
    transform: scale(1.05);
}

/* Text content */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* Mobile styling */
@media (max-width: 968px) {
    .content-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .content-block:nth-child(even) .content-flex {
        direction: ltr;
    }

    .profile-image,
    .home-image {
        max-width: 350px;
        order: -1;
    }

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

@media (max-width: 480px) {
    .content-block {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

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

    .profile-image,
    .home-image {
        max-width: 280px;
    }

    .text-content p {
        font-size: 1rem;
    }
}

/* Content blocks nieuwe styling */
.content-block {
    position: relative;
    padding: 4rem 3rem;
    margin: 6rem 0;
    background: linear-gradient(135deg,
        rgba(254, 111, 179, 0.02) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(254, 111, 179, 0.02) 100%);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(254, 111, 179, 0.1);
}

/* Titel styling */
.content-block h2 {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--pink);
    transition: width 0.3s ease;
}

/* Content flex container */
.content-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Even/oneven layout */
.content-block:nth-child(even) .content-flex {
    flex-direction: row-reverse;
}

/* Image styling */
.image-wrapper {
    flex: 0 0 400px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .content-image {
    transform: scale(1.05);
}

/* Text content */
.text-content {
    flex: 1;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Mobile styling */
@media (max-width: 968px) {
    .content-block {
        padding: 3rem 2rem;
    }

    .content-flex {
        flex-direction: column !important;
        gap: 2rem;
    }

    .image-wrapper {
        flex: 0 0 300px;
        height: 300px;
        width: 300px;
        margin: 0 auto;
    }

    .content-block h2 {
        width: 100%;
        text-align: center;
    }

    .content-block h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .content-block {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }

    .image-wrapper {
        flex: 0 0 250px;
        height: 250px;
        width: 250px;
    }

    .content-block h2 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }
}

/* Responsive aanpassingen voor "Mijn waarden" sectie */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* Responsive aanpassingen voor "Persoonlijke ontwikkeling" sectie */
@media (max-width: 768px) {
    .personality-section h2 {
        text-align: center;
        margin-bottom: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .personality-card {
        padding: 1.5rem;
        min-height: 200px;
    }

    .card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .personality-card h3 {
        font-size: 1.2rem;
    }

    .personality-card p {
        font-size: 1rem;
    }
}