:root {
    --dark-blue: #052832;
    --medium-blue: #0b3c4b;
    --light-green: #22e0a1;
    --white: #ffffff;
    --light-grey: #696767;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #E6F3F9;
    color: var(--white);
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: var(--dark-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.logo img {
    height: 80px;
    margin-right: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--light-green);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-green);
    transform-origin: bottom center;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.main-nav a:not(.active)::after {
    transform: scaleX(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .header .container {
        position: relative;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-blue);
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0 !important;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 20px !important;
        margin: 0 !important;
        list-style: none !important;
        display: block !important;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none !important;
        display: block !important;
        margin: 0 !important;
    }
    
    .main-nav a {
        display: block !important;
        padding: 15px 10px !important;
        font-size: 18px !important;
        color: var(--white) !important;
        text-decoration: none;
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--light-green) !important;
    }
    
    .main-nav a::after {
        display: none !important;
    }
}

/* Hero Section - index.php */
.hero-section {
    background:url( '../images/villa.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    color: #fff;
    position: relative;
    text-align: center;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.no-results{
    color: black;
}

.hero-section h1 {
    font-size: 48px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.btn {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--dark-blue);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #1fcaa1;
}

/* Recommended Villas Section - index.php */
.recommended-villas-section {
    background-color: var(--medium-blue);
    border-radius: 20px;
    padding: 50px;
    margin-top: -80px;
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    gap: 40px;
    align-items: center;
}

.recommended-villas-section .intro {
    flex: 1;
    min-width: 250px;
}

.recommended-villas-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.recommended-villas-section p.subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--light-grey);
}

.villa-cards-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Add this rule to your CSS file or within a <style> tag */
.villa-info {
    color: black;
}

.villa-card {
    background-color: var(--dark-blue);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.villa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}

.villa-card > a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.villa-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.villa-card-content {
    padding: 20px;
    padding-bottom: 20px;
    background-color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.villa-card-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.villa-card-content p {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.5;
}

/* Villa card new elements */
.villa-location {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 12px !important;
    color: var(--light-green) !important;
    font-weight: 500;
}

.villa-capacity {
    font-size: 12px !important;
    color: var(--light-grey) !important;
    margin-bottom: 12px;
}

.villa-features-list {
    margin-bottom: 12px;
}

.ligging-section {
    margin-bottom: 8px;
}

.ligging-label {
    font-size: 11px;
    color: var(--light-grey);
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 11px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 3px;
    font-weight: 400;
}

.villa-eigenschappen {
    margin-bottom: 12px;
}

.villa-eigenschappen ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.villa-eigenschappen li {
    background-color: rgba(34, 224, 161, 0.1);
    color: var(--light-green);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid rgba(34, 224, 161, 0.3);
}

.villa-ligging {
    margin-bottom: 15px;
    font-size: 11px;
}

.villa-ligging strong {
    color: var(--white);
    font-weight: 600;
}

.villa-ligging span {
    color: var(--light-grey);
    margin-left: 5px;
}

.villa-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
    padding-top: 15px;
}

.villa-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--light-green);
}




/* Villa card new elements */
.villa-location {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 12px !important;
    color: var(--light-green) !important;
    font-weight: 500;
}

.villa-capacity {
    font-size: 12px !important;
    color: var(--light-grey) !important;
    margin-bottom: 12px;
}

.villa-features-list {
    margin-bottom: 12px;
}

.ligging-section {
    margin-bottom: 8px;
}

.ligging-label {
    font-size: 11px;
    color: var(--light-grey);
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 11px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 3px;
    font-weight: 400;
}

.villa-eigenschappen {
    margin-bottom: 12px;
}

.villa-eigenschappen ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.villa-eigenschappen li {
    background-color: rgba(34, 224, 161, 0.1);
    color: var(--light-green);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid rgba(34, 224, 161, 0.3);
}

.villa-ligging {
    margin-bottom: 15px;
    font-size: 11px;
}

.villa-ligging strong {
    color: var(--white);
    font-weight: 600;
}

.villa-ligging span {
    color: var(--light-grey);
    margin-left: 5px;
}

.villa-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.villa-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--light-green);
}

/* Homepage villa card button */
.villa-card .btn-bekijk {
    background-color: #2C5F7F;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 0 0 15px 0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    right: 0;
}

.villa-card .btn-bekijk:hover {
    background-color: #1e4256;
    transform: translateY(-2px);
}

.villa-card > a {
    text-decoration: none;
}   
/* Welcome Section - index.php */
.welcome-villaverkenner {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 100px;
}

.welcome-villaverkenner .text-content {
    color: black;
    flex: 1;
}

.welcome-villaverkenner .text-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.welcome-villaverkenner .text-content p {
    color: var(--light-grey);
    font-size: 16px;
    line-height: 1.8;
}

.welcome-villaverkenner .image-content {
    flex: 1;
}

.welcome-villaverkenner .image-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Villa Page Layout - VillaPage.php */
.main-content {
    width: 100%;
    padding: 0;
}

.villa-page-wrapper {
    max-width: 100%;
    padding: 0;
}

.villa-page-container {
    display: flex;
    gap: 0;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 100%;
    padding: 0;
    min-height: calc(100vh - 140px);
}

.filters-sidebar {
    flex: 0 0 280px;
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 0;
    position: sticky;
    top: 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    margin-left: 0;
    height: 100vh;
    overflow-y: auto;
}

.villa-list-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 20px 60px 30px;
}

.filters-sidebar h2 {
    color: var(--dark-blue);
    font-size: 24px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 10px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    color: var(--dark-blue);
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.slider-container {
    position: relative;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-green);
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-green);
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--light-grey);
}

.slider-labels span {
    background-color: var(--light-green);
    color: var(--dark-blue);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 11px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 5px 0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: var(--light-green);
}

.villa-list-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.villa-list-card {
    background-color: var(--white);
    border-radius: 30px 0px 30px 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.villa-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.villa-list-image {
    flex: 0 0 250px;
}

.villa-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px 0 0 10px;
}

/* Placeholder for villa images */
.villa-list-image {
    flex: 0 0 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.villa-list-content {
    color: black;
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.villa-list-header h2 {
    color: black;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.villa-list-header h5 {
    color: black;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.villa-list-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.villa-list-features li {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 4px;
}

.villa-list-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}

.villa-list-price {
    color: var(--light-green);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    padding-right: 20px;
}

.btn-bekijk {
    background-color: #2C5F7F;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 25px 0 30px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 17.5px;
    position: relative;
}

.btn-bekijk:hover {
    background-color: #1e4256;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 127, 0.3);
}

/* Footer */
.footer {
    background-color: var(--medium-blue);
    padding: 30px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    margin-top: 30px;
}

.footer-logo img {
    height: 60px;
    margin-right: 10px;
    margin-top: 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a,
.footer-section p {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.social-icons a {
    color: var(--white);
    font-size: 20px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--light-green);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 38px;
    }
    .recommended-villas-section {
        flex-direction: column;
        padding: 40px;
    }
    .recommended-villas-section .intro {
        text-align: center;
        margin-bottom: 30px;
    }
    .villa-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .welcome-villaverkenner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .footer .container {
        grid-template-columns: 3fr 1fr;
    }
    .villa-page-container {
        flex-direction: column;
    }
    .filters-sidebar {
        flex: none;
        position: static;
        height: auto;
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* Villa list cards responsive */
    .villa-list-section {
        padding: 20px 15px;
    }
    
    .villa-list-card {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .villa-list-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .villa-list-image img {
        border-radius: 15px 15px 0 0;
    }
    
    .villa-list-content {
        padding: 20px;
        padding-bottom: 70px;
    }
    
    .villa-list-footer {
        position: relative;
        align-items: stretch;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .villa-list-price {
        padding-right: 0;
        padding-left: 10px;
        align-self: center;
    }
    
    .btn-bekijk {
        position: static;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .villa-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .villa-card {
        max-width: 100%;
    }
    
    .villa-card img {
        height: 200px;
    }
    
    .villa-card-content {
        padding: 15px;
        padding-bottom: 60px;
    }
    
    .recommended-villas-section {
        padding: 30px 20px;
        margin-top: -50px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
        padding: 0 10px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    .recommended-villas-section {
        padding: 20px 15px;
    }
    .recommended-villas-section h2 {
        font-size: 26px;
    }
    .recommended-villas-section p.subtitle {
        font-size: 16px;
    }
    .welcome-villaverkenner .text-content h2 {
        font-size: 26px;
    }
    
    /* Villa cards mobile optimization */
    .villa-card {
        border-radius: 12px;
    }
    
    .villa-card img {
        height: 180px;
    }
    
    .villa-card-content {
        padding: 12px;
        padding-bottom: 55px;
    }
    
    .villa-card-content h3 {
        font-size: 15px;
    }
    
    .villa-card-content p {
        font-size: 12px;
    }
    
    .villa-card .btn-bekijk {
        padding: 8px 18px;
        font-size: 11px;
        border-radius: 0 0 12px 0;
    }
    
    /* Villa list section mobile */
    .villa-list-section {
        padding: 15px 10px;
        gap: 15px;
    }
    
    .villa-list-card {
        border-radius: 12px;
    }
    
    .villa-list-image {
        height: 180px;
    }
    
    .villa-list-content {
        padding: 15px;
        padding-bottom: 60px;
    }
    
    .villa-list-header h2 {
        font-size: 18px;
    }
    
    .villa-list-header h5 {
        font-size: 16px;
    }
    
    .villa-list-features li {
        font-size: 13px;
    }
    
    .villa-list-price {
        font-size: 18px;
        padding-left: 15px;
    }
    
    .btn-bekijk {
        padding: 10px 25px;
        font-size: 15px;
        border-radius: 20px;
    }
    
    /* Filters on mobile */
    .filters-sidebar {
        padding: 20px 15px;
    }
    
    .filters-sidebar h2 {
        font-size: 20px;
    }
    
    .filter-group h4 {
        font-size: 15px;
    }
}



.contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #193C5B;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-section h1 {
    width: 100%;
    text-align: left;
    color: #193C5B;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

/* Formulier */
.contact-form {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

/* Contact info */
.contact-info {
    flex: 1 1 300px;
    padding-left: 2rem;
    min-width: 280px;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #222;
    font-size: 1rem;
    margin-top: 40px;
}

.villa-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-form label {
    margin-top: 1rem;
    font-weight: bold;
    color: #193C5B;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 5px rgba(74, 222, 128, 0.3);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 300px;
    padding: 0.75rem;
    background-color: #4ade80;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive voor tablets en mobiel */
@media (max-width: 768px) {
    .contact-section {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .contact-section h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-form {
        flex: 1 1 100%;
    }
    
    .contact-info {
        flex: 1 1 100%;
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .submit-btn {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1rem;
    }
    
    .contact-section h1 {
        font-size: 1.75rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.65rem;
        font-size: 0.95rem;
    }
}











/* dit is het part van about us designs */

@font-face {
    font-family: 'abhaya';
    src: url(/fonts/AbhayaLibre-Medium.ttf);
}


.our-values{
    display: flex;
    
}

.textpart{
    color: black;
    font-family: abhaya;
    margin-left: 7%;
    font-size: 20px;
}
.textpart h1{
    margin-top: 20px;
    color: #255D8E;
    font-size: 60px;
    font-family: abhaya;
    margin-bottom: 20px;
}
.valuespart{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 50px;
    color: black;
    margin-top: 45px;
    margin-right: 20%;
    margin-bottom: 20px;
}
.valuespart > div{
    display: flex;
    flex-direction: row;
}
.valuespart > div > p{
    margin-left: 15px;
    font-size: 16px;
    margin-top: 4%;
}
.the-team{
    color: black;
    font-family: abhaya;
    margin-left: 7%;
    font-size: 20px;
}
.the-team > h1{
    margin-top: 20px;
    color: #255D8E;
    font-size: 60px;
    font-family: abhaya;
    margin-bottom: 20px;
}
.team-img{
    display: flex;
    gap: 5%;
    margin-left: 12%;
}
.team-img > div > p{
    text-align: center;
}
.text-team{
    margin-top: 15px;
    font-size: 25px;
    width: 80%;
    margin-top: 60px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .our-values{
        flex-direction: column;
    }
    .textpart{
    margin-left: 0px;
    }
    .textpart p {
        font-size: 16px;
        margin-left: 6%;
    }
    .textpart h1{
        text-align: center;
    }
    .valuespart{
        margin-right: 10%;
    }
    .the-team{
        margin-left: 0px;
    }
    .the-team h1{
        text-align: center;
    }
    .text-team > p {
        font-size: 16px;
        margin-left: 6%;
    }
    .team-img{
        margin-left: 0px;
        align-items: center;
    }
    .team-img > div > img{
        width: 100%;
        margin-left: 0px;
    }
}