.contact-footer {
  width: 100%;
	padding-bottom: 80px;
}

.contact-footer__container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem;
    justify-content: center;
    padding: 35px 30px;
    border-radius: 30px;
    background-color: #f3f3f3;
}

/* ── Image ── */
.contact-footer__image-wrapper {
  flex-shrink: 0;
}

.contact-footer__image {
    display: block;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
}

/* ── Content ── */
.contact-footer__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-footer__title {
	font-family: "Clash Grotesk", sans-serif;
    margin: 0;
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 20px;
}

/* ── Person: naam + bedrijf met border-left ── */
.contact-footer__person {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0.75rem;
  border-left: 1px solid #1F2C4C; /* ← kleur hier aanpassen */
	    margin-bottom: 20px;
}

.contact-footer__name {
font-family: "Clash Grotesk", sans-serif;
    font-weight: 500;
    font-size: 24px;
}

.contact-footer__company {
	font-family: "Clash Grotesk", sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 25px;
}

/* ── Links ── */
.contact-footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-footer__link {
    background-color: transparent;
    color: #1F2C4C;
    font-family: "Open Sans", sans-serif;
    padding: 16px 30px 15px 30px;
    display: inline-block;
    border-radius: 100px;
    text-decoration: unset;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    transition: 0.3s all;
    border: 1px solid #1F2C4C;
    margin-top: 10px;
}

.contact-footer__link:hover { 
	background-color: #1F2C4C;
    color: white;
    border: 1px solid #1F2C4C;
    transition: 0.3s all;
}

.contact-footer__link--button {
    background-color: #1F2C4C;
    color: white;
    font-family: "Open Sans", sans-serif;
    padding: 16px 30px 15px 30px;
    display: inline-block;
    border-radius: 100px;
    text-decoration: unset;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    transition: 0.3s all;
    border: 1px solid #1F2C4C;
    margin-top: 10px;
}

.contact-footer__link--button:hover {
	background-color: transparent;
    color: #1F2C4C;
    border: 1px solid #1F2C4C;
    transition: 0.3s all;
}

@media (min-width: 700px) and (max-width: 910px) {
	.contact-footer__container {
		border-radius: 0px;
		padding: 60px 30px;
	}
	
	.contact-footer__links {
		display: flex;
		align-items: flex-start;
		gap: unset;
		flex-direction: column;
	}
	
	.contact-footer__title {
		font-size: 32px;
	}
	
	.contact-footer__person {
		margin-bottom: 10px;
	}
	
	.contact-footer {
		padding-bottom: 0px;
	}
}

@media (min-width: 450px) and (max-width: 699px) {
	.contact-footer__container {
		border-radius: 0px;
		padding: 60px 30px;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.contact-footer__links {
		display: flex;
		align-items: flex-start;
		gap: unset;
		flex-direction: column;
	}
	
	.contact-footer__title {
		font-size: 32px;
	}
	
	.contact-footer__person {
		margin-bottom: 10px;
	}
	
	.contact-footer {
		padding-bottom: 0px;
	}
}

@media (max-width: 449px) {
	.contact-footer__container {
		border-radius: 0px;
		padding: 60px 30px;
		flex-direction: column;
		align-items: flex-start;
		margin-top: -30px;
	}
	
	.contact-footer__links {
		display: flex;
		align-items: flex-start;
		gap: unset;
		flex-direction: column;
	}
	
	.contact-footer__title {
		font-size: 26px;
	}
	
	.contact-footer__person {
		margin-bottom: 10px;
	}
	
	.contact-footer {
		padding-bottom: 0px;
	}
	
	.contact-footer__image {
		width: 100%;
	}
	
	.contact-footer__name {
		font-size: 22px;
	}
	
	.contact-footer__company {
		font-size: 18px;
	}
}