@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap");

@font-face {
    font-family: "Avenir Next";
    src: local("Avenir Next Medium"), local("Avenir-Next-Medium"), local("AvenirNext-Medium");
    font-weight: 500;
    font-style: normal;
}

:root {
    /* --gradient-bg-color: linear-gradient(90deg, rgb(86, 142, 213) 0%, rgb(86, 182, 214) 100%); */
    --gradient-bg-color: #568ed5;
    --text-color: #2f3231;
    --card-bg-color: rgba(86, 142, 213, 0.14);
    --blue-color: #568ed5;
    --main-border-radius: 30px;
    --img-border-radius: 10px;
}

body {
    margin: 0;
}

p {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
}

.border-button {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--blue-color);
    border-radius: 6px;
    padding: 11px 50px;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-color);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    width: fit-content;
    margin-top: 20px;
    min-width: 200px;
}

.border-button:hover {
    background: var(--blue-color);
    color: white;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--gradient-bg-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.17% 0 4.17%;
    box-sizing: border-box;
    z-index: 100;
}

.header-logo img {
    height: 100%;
    width: auto;
    display: block;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 80px;
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: white !important;

}

.header-nav li {
    color: white !important;
    text-decoration: none;
    white-space: nowrap;
    transition: text-decoration 0.3s ease;
    list-style: none;
    a {
        color: white !important;
        text-decoration: none;
        white-space: nowrap;
        transition: text-decoration 0.3s ease;
        list-style: none;
    }
}

.header-nav li:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: white;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-bg-color);
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px;
}

.mobile-menu > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu li {
    margin: 0;
    padding: 0;
}

.mobile-menu a,
.mobile-nav-link {
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.mobile-menu a:hover,
.mobile-nav-link:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 620px;
    margin-top: 100px;
    overflow: hidden;
    margin-bottom: 80px;

    > div {
        height: 100%;
    }
}

.hero-background {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: calc(100% + 6px);
    height: calc(100% + 40px);
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 50, 49, 0.27);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-column: col-start 3 / span 8;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 20px;
    max-width: 1920px;
    margin: auto;
    align-items: center;
}

.positioning-section {
    padding: 75px 0;
    margin-top: 75px;
}

.positioning-image {
    grid-column: col-start 3 / span 4;
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.positioning-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
}

.positioning-content {
    grid-column: col-start 7 / span 4;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.positioning-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    color: var(--text-color);
    margin: 0;
}

.positioning-text {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
}

.positioning-text p {
    margin: 0 0 0 0;
}

.positioning-button {
    display: inline-block;
    background: white;
    border: 2px solid var(--blue-color);
    border-radius: 6px;
    padding: 11px 22px;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-color);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    width: fit-content;
    margin-top: 20px;
}

.positioning-button:hover {
    background: var(--blue-color);
    color: white;
}

.hero-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 66px;
    color: white;
    margin: 0;
    max-width: 1018px;
}

.hero-description {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: white;
    margin: 0;
    max-width: 721px;
}

.hero-button {
    display: inline-block;
    background: var(--blue-color);
    border: 2px solid var(--blue-color);
    border-radius: 6px;
    padding: 11px 22px;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    background: #4a7bc4;
    border-color: #4a7bc4;
}

/* Expertise Section */
.expertise-section {
    padding: 75px 0;
}

.expertise-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 66px;
    color: var(--text-color);
    text-align: center;
    margin: 0 auto 60px;
    max-width: 573px;
}

.expertise-cards {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.expertise-card {
    background: var(--card-bg-color);
    border-radius: 10px;
    padding: 68px 52px 68px 52px;
    width: 476px;
    min-height: 456px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;

    div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
}

.card-title {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    color: var(--text-color);
    margin: 0 0 12px 0;
    min-height: 104px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-top: 50px;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    height: 33px;
    gap: 8px;
    border-bottom: 2px solid var(--blue-color);
}

.read-more-text {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-color);
    line-height: 33px;
    flex-shrink: 0;
}

.read-more-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 20px;
}

.read-more-icon img {
    display: block;
    height: 20px;
    width: 20px;
}

/* Approach Section */
.approach-section {
    background:
        linear-gradient(90deg, rgb(231, 239, 249) 0%, rgb(231, 239, 249) 100%),
        linear-gradient(0deg, rgb(175, 210, 255) 0%, rgb(231, 239, 249) 100%);
    padding: 75px 0;
    margin: 80px 0;
}

.approach-container {
    align-items: center;
}

.approach-content {
    grid-column: col-start 3 / span 4;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    color: var(--text-color);
    margin: 0;
}

.approach-text {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
}

.approach-text p {
    margin: 0;
}

.approach-image {
    grid-column: col-start 7 / span 4;
    position: relative;
    width: 100%;
    height: 526px;
    border-radius: 10px;
    overflow: hidden;
}

.approach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
}

/* Experience Section */
.experience-section {
    padding: 75px 0;
}

.experience-container {
    background: #e7eff9;
    border-radius: 30px;
    padding: 75px 80px;
    align-items: center;
    grid-column: col-start 3 / span 8;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 50%;
}

.experience-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    color: var(--text-color);
    margin: 0;
}

.experience-text {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
}

.experience-text p {
    margin: 0;
}

.experience-image {
    position: relative;
    /* min-width: 460px; */
    width: 50%;
    height: 431px;
    border-radius: 10px;
    overflow: hidden;
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
}

/* Diensten Section */
.diensten-section {
    background: var(--gradient-bg-color);
    height: 361px;
    margin-top: 100px;
    display: flex;
    align-items: center;
}

.diensten-container {
    margin: 0 80px;
    width: 100%;
    height: 100%;
    align-items: center;
}

.diensten-content {
    grid-column: col-start 3 / span 8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.diensten-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 66px;
    color: white;
    margin: 0;
    max-width: 870px;
}

.diensten-description {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: white;
    margin: 0;
    max-width: 870px;
}

/* Enforcement Section */
.enforcement-section {
    background: var(--card-bg-color);
    padding: 150px 0;
}

.sustainability-section {
    padding: 150px 0;
}

.enforcement-container {
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 20px;
    max-width: 1920px;
    margin: auto;
}

.enforcement-top {
    grid-column: col-start 1 / span 12;
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 20px;
    margin-bottom: 65px;
    align-items: center;
}

.enforcement-content {
    grid-column: col-start 3 / span 4;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.enforcement-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    color: var(--text-color);
    margin: 0;
    max-width: 574px;
}

.enforcement-text {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    max-width: 573px;
}

.enforcement-text p {
    margin: 0;
}

.enforcement-image {
    grid-column: col-start 7 / span 4;
    position: relative;
    width: 100%;
    height: 507px;
    border-radius: 10px;
    overflow: hidden;
}

.enforcement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
}

.enforcement-bottom {
    grid-column: col-start 1 / span 12;
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 20px;
}

.enforcement-activities {
    grid-column: col-start 3 / span 4;
}

.enforcement-relevant {
    grid-column: col-start 7 / span 4;
}

.enforcement-subheading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    margin: 0 0 24px 0;
    max-width: 574px;
}

.enforcement-list {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
    padding-left: 30px;
    max-width: 574px;
}

.enforcement-list li {
    margin-bottom: 0;
}

.enforcement-list li:not(:last-child) {
    margin-bottom: 0;
}

.enforcement-relevant-text {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
    max-width: 574px;
}

/* CTA Section */
.cta-section {
    padding: 75px 0;
}

.cta-container {
    margin: 80px auto;
    background: var(--gradient-bg-color);
    border-radius: 30px;
    padding: 75px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.cta-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    color: white;
    margin: 0;
    max-width: 742px;
}

.cta-button {
    display: inline-block;
    background: transparent;
    border: 2px solid white;
    border-radius: 6px;
    padding: 11px 50px;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    min-width: 200px;
}

.cta-button:hover {
    background: white;
    color: var(--blue-color);
}

/* Equanimity Section */
.equanimity-section {
    padding: 150px 0;
}

.equanimity-container {
    margin: 80px auto;
}

.equanimity-content {
    grid-column: col-start 4 / span 6;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.equanimity-label {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
    max-width: 670px;
}

.equanimity-word {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 96px;
    font-weight: 500;
    line-height: 96px;
    color: var(--text-color);
    margin: 0;
    max-width: 870px;
}

.equanimity-pronunciation {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
    max-width: 670px;
}

.equanimity-definition {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
    max-width: 870px;
}

.equanimity-logo {
    margin: 60px 0 20px;
    height: 38px;
    width: auto;
}

.equanimity-logo svg,
.equanimity-logo img {
    height: 100%;
    width: auto;
    display: block;
}

.equanimity-description {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
    max-width: 870px;
}

/* Contact Section */
.contact-section {
    padding: 75px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    gap: 20px;
    max-width: 1920px;
    margin: auto;
    align-items: flex-start;
}

.contact-info-card {
    grid-column: col-start 3 / span 4;
    background: var(--card-bg-color);
    border-radius: 10px;
    padding: 58px 48px;
    display: flex;
    flex-direction: column;
    gap: 58px;
    height: 100%;
    box-sizing: border-box;
}

.contact-info-heading {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    color: var(--text-color);
    margin: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-text {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-color);
    margin: 0;
    text-decoration: none;
}

.contact-info-text:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    grid-column: col-start 7 / span 4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
}

.form-input,
.form-textarea {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: rgba(47, 50, 49, 0.8);
    background: var(--card-bg-color);
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: background-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(86, 142, 213, 0.2);
    color: var(--text-color);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(47, 50, 49, 0.8);
}

.form-input {
    height: 52px;
}

.form-textarea {
    height: 171px;
    resize: vertical;
    font-family: "Lato", sans-serif;
}

.form-submit-button {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    background: var(--blue-color);
    border: 2px solid var(--blue-color);
    border-radius: 6px;
    padding: 11px 50px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
    width: fit-content;
    margin-top: 0;
}

.form-submit-button:hover {
    background: #4a7bc4;
    border-color: #4a7bc4;
}

/* Contact Form 7 styling (when shortcode is used inside contact-form-wrapper) */
.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
}

.contact-form-wrapper .wpcf7-form p {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

.contact-form-wrapper .wpcf7-form label {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    margin: 0;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-text,
.contact-form-wrapper .wpcf7-form-control.wpcf7-email,
.contact-form-wrapper .wpcf7-form-control.wpcf7-textarea {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: rgba(47, 50, 49, 0.8);
    background: var(--card-bg-color);
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: background-color 0.3s ease;
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-text:focus,
.contact-form-wrapper .wpcf7-form-control.wpcf7-email:focus,
.contact-form-wrapper .wpcf7-form-control.wpcf7-textarea:focus {
    background: rgba(86, 142, 213, 0.2);
    color: var(--text-color);
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-text::placeholder,
.contact-form-wrapper .wpcf7-form-control.wpcf7-email::placeholder,
.contact-form-wrapper .wpcf7-form-control.wpcf7-textarea::placeholder {
    color: rgba(47, 50, 49, 0.8);
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-text,
.contact-form-wrapper .wpcf7-form-control.wpcf7-email {
    height: 52px;
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-textarea {
    height: 171px;
    resize: vertical;
    min-height: 171px;
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-submit {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    background: var(--blue-color);
    border: 2px solid var(--blue-color);
    border-radius: 6px;
    padding: 11px 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: fit-content;
    margin-top: 0;
}

.contact-form-wrapper .wpcf7-form-control.wpcf7-submit:hover {
    background: #4a7bc4;
    border-color: #4a7bc4;
}

/* Hide CF7 default br in labels, we use gap for spacing */
.contact-form-wrapper .wpcf7-form label br {
    display: none;
}

/* Screen reader and response output - keep accessible, minimal visual */
.contact-form-wrapper .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 1em 0 0;
    padding: 0.5em 1em;
    border: 1px solid var(--blue-color);
    border-radius: 6px;
}

.contact-form-wrapper .wpcf7-spinner {
    margin-left: 0.5em;
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .expertise-cards {
        gap: 24px;
    }

    .expertise-card {
        width: calc(33.333% - 16px);
        min-width: 350px;
    }
}

@media (max-width: 1200px) {
    .expertise-card {
        width: calc(50% - 15px);
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    /* Hide regular nav on mobile */
    .header-nav {
        display: none;
    }

    /* Show hamburger button on mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Header */
    .header {
        height: 58px;
    }

    .header-logo svg {
        height: 24px;
        width: auto;
    }

    /* Mobile Hero Section */
    .hero-section {
        height: 380px;
        margin-top: 58px;
        margin-bottom: 40px;
    }

    .hero-background {
        width: 100%;
        height: 100%;
    }

    .hero-content {
        padding: 38px 21px 20px;
        gap: 24px;
        grid-column: col-start 1 / span 1;
        position: relative;
        z-index: 1;
    }

    .hero-heading {
        font-size: 28px;
        line-height: 30px;
        /* max-width: 352px; */
    }

    .hero-description {
        font-size: 14px;
        max-width: 352px;
    }

    .hero-button {
        font-size: 16px;
        padding: 8px 16px;
    }

    /* Mobile Expertise Section */
    .expertise-section {
        padding: 48px 0;
    }

    .expertise-heading {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 30px;
        max-width: 353px;
    }

    .expertise-cards {
        /* gap: 0; */
        margin: 0 19px;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }

    .expertise-cards::-webkit-scrollbar {
        display: none;
    }

    .expertise-card {
        width: 90%;
        min-width: unset;
        min-height: 292px;
        padding: 53px 24px 53px 24px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .card-title {
        font-size: 24px;
        line-height: 26px;
        min-height: 59px;
        margin-bottom: 8px;
    }

    .card-description {
        font-size: 14px;
        line-height: normal;
    }

    .read-more-link {
        margin-top: 20px;
        font-size: 16px;
    }

    .read-more-text {
        font-size: 16px;
    }

    /* Mobile Grid Container */
    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 20px;
        padding: 20px 0;
    }

    .hero-section .grid-container {
        margin: 0;
        padding: 0;
        height: 100%;
    }

    /* Mobile Positioning Section */
    .positioning-section {
        padding: 40px 0;
        margin-top: 0;
    }

    .positioning-image {
        grid-column: col-start 1 / span 1;
        height: 310px;
        margin-bottom: 30px;
    }

    .positioning-content {
        grid-column: col-start 1 / span 1;
    }

    .positioning-heading {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .positioning-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .border-button {
        font-size: 16px;
        padding: 8px 16px;
        min-width: 204px;
    }

    /* Mobile Approach Section */
    .approach-section {
        padding: 80px 0;
        margin: 40px 0;
    }

    .approach-container {
        margin: 0 20px;
        padding: 0;
    }

    .approach-content {
        grid-column: col-start 1 / span 1;
        margin-bottom: 30px;
    }

    .approach-heading {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .approach-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .approach-image {
        grid-column: col-start 1 / span 1;
        height: 323px;
        margin-top: 0;
    }

    /* Mobile Experience Section */
    .experience-section {
        padding: 20px 0;
    }

    .experience-container {
        padding: 20px 20px;
        flex-direction: column-reverse;
        gap: 26px;
        margin: 0;
    }

    .experience-content {
        grid-column: col-start 1 / span 1;
        gap: 0;
        width: 100%;
    }

    .experience-heading {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .experience-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .experience-image {
        grid-column: col-start 1 / span 1;
        height: 296px;
        margin-top: 0;
        min-width: unset;
        width: 100%;
    }

    /* Mobile Diensten Section */
    .diensten-section {
        height: auto;
        margin-top: 58px;
        padding: 40px 0;
    }

    .diensten-container {
        margin: 0 20px;
        padding: 20px 0;
    }

    .diensten-content {
        grid-column: col-start 1 / span 1;
        gap: 16px;
    }

    .diensten-heading {
        font-size: 28px;
        line-height: 30px;
        max-width: 100%;
    }

    .diensten-description {
        font-size: 14px;
        max-width: 100%;
    }

    /* Mobile Enforcement Section */
    .enforcement-section {
        padding: 80px 0;
    }

    .sustainability-section {
        padding: 80px 0;
    }

    .enforcement-container {
        margin: 0 20px;
        padding: 0;
    }

    .enforcement-top {
        grid-column: col-start 1 / span 1;
        margin-bottom: 40px;
        row-gap: 30px;
        column-gap: 0px;
        grid-template-columns: 1fr;
    }

    .enforcement-content {
        grid-column: col-start 1 / span 1;
    }

    .enforcement-heading {
        font-size: 24px;
        line-height: 26px;
        max-width: 100%;
    }

    .enforcement-text {
        font-size: 14px;
        max-width: 100%;
    }

    .enforcement-image {
        grid-column: col-start 1 / span 1;
        height: 350px;
        margin-top: 0;
    }

    .enforcement-bottom {
        grid-column: col-start 1 / span 1;
        row-gap: 30px;
        column-gap: 0px;
        grid-template-columns: 1fr;
    }

    .enforcement-activities {
        grid-column: col-start 1 / span 1;
    }

    .enforcement-relevant {
        grid-column: col-start 1 / span 1;
    }

    .enforcement-subheading {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .enforcement-list {
        font-size: 14px;
        padding-left: 20px;
        max-width: 100%;
    }

    .enforcement-relevant-text {
        font-size: 14px;
        max-width: 100%;
    }

    /* Mobile CTA Section */
    .cta-section {
        padding: 40px 0;
    }

    .cta-container {
        margin: 0 20px;
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-content {
        gap: 30px;
    }

    .cta-heading {
        font-size: 28px;
        line-height: 30px;
        max-width: 100%;
    }

    .cta-button {
        font-size: 16px;
        padding: 8px 16px;
        min-width: 200px;
    }

    /* Mobile Equanimity Section */
    .equanimity-section {
        padding: 40px 0;
    }

    .equanimity-container {
        margin: 0 20px;
        padding: 0;
    }

    .equanimity-content {
        grid-column: col-start 1 / span 1;
        gap: 16px;
    }

    .equanimity-label {
        font-size: 24px;
        max-width: 100%;
    }

    .equanimity-word {
        font-size: 48px;
        line-height: 52px;
        max-width: 100%;
    }

    .equanimity-pronunciation {
        font-size: 24px;
        max-width: 100%;
    }

    .equanimity-definition {
        font-size: 16px;
        max-width: 100%;
    }

    .equanimity-logo {
        margin: 40px 0 16px;
        height: 32px;
    }

    .equanimity-description {
        font-size: 16px;
        max-width: 100%;
    }

    /* Mobile Contact Section */
    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        margin: 0 20px;
        padding: 0;
        row-gap: 30px;
        column-gap: 0px;
    }

    .contact-info-card {
        grid-column: col-start 1 / span 1;
        padding: 40px 20px;
        height: auto;
        gap: 40px;
    }

    .contact-info-heading {
        font-size: 36px;
        line-height: 40px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-info-icon {
        width: 20px;
        height: 20px;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-text {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-form-wrapper {
        grid-column: col-start 1 / span 1;
    }

    .contact-form {
        gap: 30px;
    }

    .form-group {
        gap: 10px;
    }

    .form-label {
        font-size: 24px;
        line-height: 26px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 14px 16px;
    }

    .form-input {
        height: 48px;
    }

    .form-textarea {
        height: 150px;
    }

    .form-submit-button {
        font-size: 16px;
        padding: 8px 16px;
        width: 100%;
    }

    /* Contact Form 7 responsive */
    .contact-form-wrapper .wpcf7-form {
        gap: 30px;
    }

    .contact-form-wrapper .wpcf7-form p {
        gap: 10px;
    }

    .contact-form-wrapper .wpcf7-form label {
        font-size: 24px;
        line-height: 26px;
    }

    .contact-form-wrapper .wpcf7-form-control.wpcf7-text,
    .contact-form-wrapper .wpcf7-form-control.wpcf7-email,
    .contact-form-wrapper .wpcf7-form-control.wpcf7-textarea {
        font-size: 16px;
        padding: 14px 16px;
    }

    .contact-form-wrapper .wpcf7-form-control.wpcf7-text,
    .contact-form-wrapper .wpcf7-form-control.wpcf7-email {
        height: 48px;
    }

    .contact-form-wrapper .wpcf7-form-control.wpcf7-textarea {
        height: 150px;
        min-height: 150px;
    }

    .contact-form-wrapper .wpcf7-form-control.wpcf7-submit {
        font-size: 16px;
        padding: 8px 16px;
        width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--gradient-bg-color);
    padding: 75px 0 40px;
    color: white;
}

.footer-container {
    padding-bottom: 60px;
    align-items: flex-start;
}

.footer-left {
    grid-column: col-start 4 / span 4;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo svg,
.footer-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: white;
    margin: 0;
    max-width: 502px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img,
.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-link {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.footer-right {
    grid-column: col-start 8 / span 3;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav a,
.footer-nav-link {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover,
.footer-nav-link:hover {
    opacity: 0.8;
}

.footer-legal {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 80px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;

    > a {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
        color: white;
        margin: 0;
        text-decoration: none;
    }

    > p {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
        color: white;
        margin: 0;
        display: inline-block;
    }

    > a:hover {
        text-decoration: underline;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 72px 21px 40px;
    }

    .footer-container {
        padding-bottom: 46px;
        gap: 0px;
        margin: 0;
    }

    .footer-left {
        grid-column: col-start 1 / span 1;
        margin-bottom: 0;
        gap: 24px;
    }

    .footer-logo svg,
    .footer-logo img {
        height: 38px;
    }

    .footer-tagline {
        font-size: 14px;
        line-height: 30px;
        max-width: 350px;
    }

    .footer-contact {
        gap: 10px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-link {
        font-size: 16px;
        line-height: 30px;
    }

    .footer-right {
        grid-column: col-start 1 / span 1;
    }

    .footer-nav {
        gap: 0;
    }

    .footer-nav-link {
        font-size: 20px;
        line-height: 30px;
    }

    .footer-legal {
        margin: 0;
        padding-top: 0;
        font-size: 16px;
        line-height: 30px;
    }

    .footer-legal > a,
    .footer-legal > p {
        font-size: 16px;
        line-height: 30px;
    }
}
