/* Font Face Declarations */
@font-face {
    font-family: 'Calibri Light';
    src: url('brandbook/fonts/calibril.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri Light';
    src: url('brandbook/fonts/calibrili.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Cambria';
    src: url('brandbook/fonts/cambria.ttc') format('truetype-collection');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cambria';
    src: url('brandbook/fonts/cambriab.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* CSS Variables */
:root {
    --color-terzijde: #B5175E;
    --color-terzake: #6B5945;
    --color-white: #ffffff;
    --color-light: #f8f8f8;
    --color-dark: #333333;
    --font-heading: 'Cambria', serif;
    --font-body: 'Calibri Light', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 300;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-terzijde), var(--color-terzake));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
    position: relative;
    padding-top: 80px;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo-terzijde,
.hero-logo-terzake {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-logo-terzijde {
    margin-top: 20px;
}

.hero-subtitle {
    margin-top: 1rem;
}

.hero-subtitle img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Initial state for hero animation - will be overridden by JS */
#hero-terzijde,
#hero-terzake,
#hero-organisatiecoaching {
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-terzake);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-terzijde);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Sections */
.section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

.section-alt {
    background-color: var(--color-light);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-terzake);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terzijde), var(--color-terzake));
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    grid-template-columns: 300px 1fr;
    max-width: 1000px;
    align-items: start;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

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

.lead {
    font-size: 1.3rem;
    color: var(--color-terzijde);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.content-text .linkedin-link {
    color: var(--color-terzijde);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.content-text .linkedin-link:hover {
    color: var(--color-terzake);
    text-decoration: underline;
}

/* Service Intro */
.service-intro {
    margin-bottom: 3rem;
}

.service-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-dark);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card:last-child {
    grid-column: 2;
    justify-self: center;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-card:last-child {
        grid-column: span 1;
        justify-self: stretch;
    }
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid var(--color-terzijde);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-terzake);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-dark);
    line-height: 1.7;
}

.service-outro {
    margin-top: 3rem;
}

.service-outro-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-terzijde);
    margin-bottom: 1rem;
}

/* Dictionary Section */
.dictionary-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.dictionary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.dictionary-column {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dictionary-word {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-terzake);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-terzijde);
    padding-bottom: 0.5rem;
}

.dictionary-type {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.definition-list {
    list-style: decimal;
    padding-left: 1.5rem;
    font-family: var(--font-heading);
}

.definition-list li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-dark);
}

.definition-text {
    font-weight: bold;
    font-style: normal;
}

.definition-explanation {
    font-weight: normal;
    font-style: italic;
    color: #666;
}

/* Testimonials Section - Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 2rem;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: 2px solid var(--color-terzijde);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--color-terzijde);
}

.carousel-btn:hover {
    background: var(--color-terzijde);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-light);
    border: 2px solid var(--color-terzijde);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--color-terzijde);
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: -20px;
    }
    
    .carousel-btn-next {
        right: -20px;
    }
}

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

/*
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
*/

.testimonial-quote {
    position: relative;
    padding: 40px 30px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 310px;
    display: flex;
    align-items: center;      /* Verticaal centreren */
    justify-content: center;  /* Horizontaal centreren */
}

.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 80px;
    color: #E8B4BC;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-quote::after {
    content: '\201D';
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: 80px;
    color: #E8B4BC;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    font-style: italic;
    padding: 0;
}


.testimonial-author {
    border-top: 2px solid var(--color-light);
    padding-top: 1.5rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-terzake);
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.95rem;
    color: var(--color-dark);
    opacity: 0.8;
}

/* Clients Intro */
.clients-intro {
    margin-bottom: 3rem;
}

.clients-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-dark);
}

/* Baak Section */
.baak-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-light);
}

.baak-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.baak-logo-prominent {
    flex-shrink: 0;
}

.baak-logo-prominent img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.baak-text-content {
    flex: 1;
}

.baak-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.baak-intro {
    margin-bottom: 2rem;
}

.baak-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-dark);
}

.baak-link {
    color: var(--color-terzijde);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.baak-link:hover {
    color: var(--color-terzake);
    transform: translateX(5px);
}

/* Clients Logo Slideshow */
.clients-logo-carousel {
    overflow: hidden;
    margin-top: 3rem;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.clients-logo-track {
    display: flex;
    gap: 3rem;
    animation: scrollLogos 20s linear infinite;
    will-change: transform;
    align-items: center;
    width: max-content;
    flex-shrink: 0;
}

.client-logo-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 1rem;
    border-radius: 8px;
}

.client-logo-link:hover {
    transform: scale(1.1);
    background: rgba(181, 23, 94, 0.05);
}

.client-logo-img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    display: block;
}

/* Better SVG rendering */
.client-logo-img[src$=".svg"] {
    width: 100%;
    height: 80px;
    object-fit: contain;
    object-position: center;
}

.client-logo-link:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.clients-logo-carousel:hover .clients-logo-track {
    animation-play-state: paused;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo-placeholder {
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partner-logo-placeholder span {
    color: #999;
    font-size: 1rem;
    font-weight: 300;
}

.partner-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.partner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Fix voor Lieke van Manen foto - verschuif omhoog zodat kin zichtbaar is */
.partner-photo img[alt="Lieke van Manen"],
.partner-photo img[src*="Lieke"] {
    object-position: center 20%;
}

/* Fix voor Ingrid Smit foto - zorg dat hoofd volledig zichtbaar is */
.partner-card:nth-child(4) .partner-photo img {
    object-position: center 20%;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-terzake);
    margin-bottom: 0.5rem;
    text-align: center;
}

.partner-subtitle {
    font-size: 1rem;
    color: var(--color-terzijde);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.partner-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.partner-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-terzijde);
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(181, 23, 94, 0.05);
    border-left: 3px solid var(--color-terzijde);
    border-radius: 5px;
}

.partner-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-terzake);
}

.partner-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-terzijde);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    align-self: flex-start;
}

.partner-link:hover {
    color: var(--color-terzake);
    transform: translateX(5px);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item strong {
    color: var(--color-terzijde);
    font-family: var(--font-heading);
}

.contact-item a {
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-terzijde);
}

.contact-form {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terzijde);
}

.btn-primary {
    background: var(--color-terzijde);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-primary:hover {
    background: #9a144f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 23, 94, 0.3);
}

/* Footer */
.footer {
    background: #f8f8f8;
    color: var(--color-dark);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 3px solid var(--color-terzijde);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer .linkedin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer .linkedin-link:hover {
    color: var(--color-terzijde);
    transform: translateY(-2px);
}

.footer .linkedin-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-dark);
}

.footer .linkedin-link:hover svg {
    fill: var(--color-terzijde);
}

.footer-text {
    font-size: 0.9rem;
    color: var(--color-dark);
    text-align: center;
}

.footer-credits {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-dark);
    opacity: 0.8;
}

.footer-link {
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-terzijde);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-logo-terzijde,
    .hero-logo-terzake {
        max-width: 250px;
    }

    .hero-subtitle img {
        max-width: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-image {
        margin-bottom: 2rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .dictionary-section {
        padding: 2rem 1rem;
    }

    .dictionary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .baak-content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .baak-logo-prominent img {
        max-width: 120px;
    }

    .partners-grid {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }

    .partner-card {
        padding: 2rem;
    }
	
	.testimonials-carousel-wrapper {
		margin: -1rem auto 2rem;
	}		

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-quote p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .testimonial-quote p::before {
        font-size: 3rem;
        top: -5px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-logo-img {
        max-height: 60px;
        max-width: 150px;
    }

    .clients-logo-track {
        gap: 2rem;
    }
	
	.baak-section {
		margin-top: 0;
		padding-top: 1rem;
	}
    
    .baak-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .baak-logo-prominent img {
        max-width: 120px;
    }
	
	.clients-logo-carousel {
		margin-top: 0;
	}
		
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-logo-terzijde,
    .hero-logo-terzake {
        max-width: 200px;
    }

    .dictionary-section {
        padding: 2rem 1rem;
		margin: -1rem 0 3rem 0;
    }

    .dictionary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .baak-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .baak-logo-prominent img {
        max-width: 100px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-logo-placeholder,
    .partner-photo {
        width: 120px;
        height: 120px;
    }

    .client-logo-img {
        max-height: 50px;
        max-width: 120px;
    }
    
    .clients-logo-track {
        gap: 1.5rem;
    }
    
    .baak-content-wrapper {
        gap: 2rem;
    }
    
    .baak-logo-prominent img {
        max-width: 100px;
    }

    .hero-subtitle img {
        max-width: 150px;
    }
}

