/* Richard CTA Styling */
.richard-cta {
    background: linear-gradient(90deg, #171717 0%, #1C4615 100%);
    border-radius: 215px;
    position: relative;
    overflow: hidden;
}

.richard-cta-content {
    display: flex;
    align-items: center;
}

.richard-cta-image {
    width: 415px;
    height: 415px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.richard-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.richard-cta-text {
    flex-grow: 1;
    color: white;
    padding: 60px 60px 60px 80px;
}

.richard-cta-title {
    font-size: 40px;
    color: white;
    margin: 0 0 20px 0;
}

.richard-cta-name {
    font-size: 20px;
    margin: 0 0 30px 0;
}

.richard-cta-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.richard-cta-email {
    font-size: 14px;
    margin: 0;
    color: white;
}

.richard-cta-email:hover {
    color: white;
    text-decoration: none;
}

/* Responsieve aanpassingen */
@media screen and (max-width: 1092px) {
    .richard-cta {
        border-radius: 0px;
    }

    .richard-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .richard-cta-image {
        width: 200px;
        height: 200px;
        margin: 30px auto 0;
    }

    .richard-cta-text {
        padding: 30px;
    }

    .richard-cta-title {
        font-size: 40px;
    }

    .richard-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .container-cta .richard-container{
        padding-left: 0px;
        padding-right: 0px;
    }
} 