/* ========================================================================
   1. RESET AND BASE STYLES
   ======================================================================== */

/* 1.1 Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 1.2 Base Body Styles */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    text-align: center; /* Global center alignment */
}

/* 1.3 HTML Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* 1.4 Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

/* ========================================================================
   2. LAYOUT AND GRID SYSTEM
   ======================================================================== */

/* 2.1 Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* 2.2 Row Flexbox */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

/* 2.3 Grid Columns Base */
.col-lg-12, .col-lg-10, .col-lg-9, .col-lg-6, .col-lg-4, .col-lg-3, .col-lg-2,
.col-md-12, .col-md-10, .col-md-9, .col-md-6, .col-md-4, .col-md-3, .col-md-2,
.col-sm-12, .col-sm-6,
.col-xs-12 {
    padding: 0 15px;
    width: 100%;
    text-align: center;
}

/* 2.4 Large Screen Grid */
@media (min-width: 992px) {
    .col-lg-2 { width: 16.666%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.333%; }
    .col-lg-12 { width: 100%; }
}

/* 2.5 Medium Screen Grid */
@media (min-width: 768px) {
    .col-md-2 { width: 16.666%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.333%; }
    .col-md-12 { width: 100%; }
}

/* 2.6 Small Screen Grid */
@media (min-width: 576px) {
    .col-sm-6 { width: 50%; }
    .col-sm-12 { width: 100%; }
}

/* ========================================================================
   3. UTILITY CLASSES
   ======================================================================== */

/* 3.1 Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 3.2 Table Display */
.table {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* 3.3 Text Colors */
.brown-text {
    color: #d4a574;
}

/* 3.4 Decorative Line */
.line {
    display: block;
    width: 60px;
    height: 2px;
    background: #d4a574;
    margin: 20px auto;
}

/* ========================================================================
   4. PRELOADER
   ======================================================================== */

/* 4.1 Preloader Styles */
.se-pre-con {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff center center no-repeat;
}

/* ========================================================================
   5. HEADER AND NAVIGATION
   ======================================================================== */

/* 5.1 Header Container */
.slider-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

/* 5.2 Header Layout */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

/* 5.3 Header Table Cells */
.header .table-cell {
    display: flex;
    justify-content: center;
}

/* 5.4 Navigation Lists */
.header ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.header ul li {
    margin: 0 20px;
}

/* 5.5 Navigation Links */
.header ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    text-align: center;
}

.header ul li a:hover,
.header ul li.active a {
    color: #d4a574;
}

/* 5.6 Navigation Underline Effect */
.header ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.header ul li a:hover::after,
.header ul li.active a::after {
    width: 100%;
}

/* 5.7 Logo Styles */
.logo {
    margin: 0 40px;
    text-align: center;
}

.logo img {
    max-height: 100px;
    width: auto;
}

/* 5.8 Mobile Menu Icon */
.mobile-ic {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-ic span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* 5.9 Responsive Menu */
.responsive-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    text-align: center;
}

.responsive-menu ul {
    flex-direction: column;
    text-align: center;
}

.responsive-menu ul li {
    margin: 10px 0;
}

/* ========================================================================
   6. BANNER SLIDER SECTION
   ======================================================================== */

/* 6.1 Banner Container */
#home.banner-slider-initial {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* 6.2 Slider Wrapper */
.banner-slide-show-wrapper {
    position: relative;
    height: 100%;
}

.banner-slider {
    position: relative;
    height: 100%;
}

/* 6.3 Slide Stage */
.ss-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.ss-slide:first-child {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 6.4 Banner Item */
.banner-slider-item {
    position: relative;
    height: 100%;
}

.banner-slider-item-img {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 6.5 Banner Overlay */
.banner-slider-item-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* 6.6 Banner Text Content */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

/* 6.7 Banner Icon */
.banner-text .much-img {
    display: block;
    margin-bottom: 20px;
}

.banner-text .much-img img {
    max-width: 80px;
    height: auto;
    margin: 0 auto;
}

/* 6.8 Banner Subtitle */
.banner-text span {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #d4a574;
}

/* 6.9 Banner Title */
.banner-text h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: white;
}

/* 6.10 Banner Description */
.banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* 6.11 Banner Button */
.slider-more-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.slider-more-btn:hover {
    background: #b8935f;
    color: white;
    transform: translateY(-2px);
}

/* 6.12 Slider Navigation Arrows */
.ss-prev, .ss-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 165, 116, 0.8);
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 3px;
}

.ss-prev {
    left: 30px;
}

.ss-next {
    right: 30px;
}

.ss-prev:hover, .ss-next:hover {
    background: rgba(212, 165, 116, 1);
    color: white;
}

/* ========================================================================
   7. TIMING SECTION
   ======================================================================== */

/* 7.1 Timing Wrapper */
.timing-info-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -150px;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

/* 7.2 Timing Container */
.timing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
}

/* 7.3 Timing Box - TRANSPARANT met witte border */
.timing-section-box {
    background: transparent; /* VOLLEDIG TRANSPARANT */
    border: 2px solid white; /* Witte border */
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    flex: 1; /* Elke box neemt gelijke ruimte */
    max-width: 300px; /* Maximale breedte per box */
    min-width: 250px; /* Minimale breedte per box */
}

/* 7.4 Timing Icon */
.timing-section-icon {
    margin-right: 15px;
    flex-shrink: 0; /* Voorkom dat icoon krimpt */
}

.timing-section-icon i {
    font-size: 28px;
    color: #d4a574;
}

/* 7.5 Timing Text */
.timing-section-text {
    font-weight: 600;
    color: white; /* WITTE TEKST voor transparante achtergrond */
    font-size: 15px;
    text-align: center;
    line-height: 1.4;
}

/* 7.6 Responsive */
@media (max-width: 991px) {
    .timing-info-wrapper {
        margin-top: -100px;
        padding: 0 15px;
    }
    
    .timing-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .timing-section-box {
        max-width: 100%;
        min-width: auto;
        width: 100%;
        background: transparent;
    }
}

@media (max-width: 768px) {
    .timing-info-wrapper {
        margin-top: -80px;
    }
    
    .timing-section-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        min-height: 80px;
    }
    
    .timing-section-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .timing-section-text {
        font-size: 14px;
    }
}

/* ========================================================================
   8. ABOUT SECTION
   ======================================================================== */

/* 8.1 About Container */
#about.experience-section {
    padding: 100px 0;
    background: #f9f9f9;
}

/* 8.2 About Content - Links/Rechts Layout */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* 8.3 About Left Section - Tekst Links */
.about-left-section {
    flex: 1;
    text-align: left;
    margin-bottom: 40px;
    max-width: 500px;
}

.about-left-section h6 {
    color: #d4a574;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-left-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.1;
}

/* Gouden lijn onder titel - Midden uitgelijnd */
.about-left-section .line {
    display: block;
    width: 60px;
    height: 2px;
    background: #d4a574;
    margin: 20px auto;
}

/* 8.4 Story Text */
.story-text {
    margin-top: 30px;
}

.story-text .big-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #666;
    text-align: left;
    text-transform: uppercase;
    line-height: 1.4;
}

.story-text p {
    margin-bottom: 20px;
    color: #777;
    line-height: 1.8;
    text-align: left;
    font-size: 16px;
}

/* 8.5 About Right Section - Afbeelding Rechts */
.about-right-section {
    flex: 1;
    text-align: right;
    max-width: 500px;
}

.about-right-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 8.6 Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 30px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.read-more-btn:hover {
    background: #b8935f;
    color: white;
    transform: translateY(-2px);
}

/* 8.7 Responsive */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-left-section,
    .about-right-section {
        max-width: 100%;
        text-align: center;
    }
    
    .about-left-section .line {
        margin: 20px auto;
    }
    
    .story-text .big-text,
    .story-text p {
        text-align: center;
    }
}

/* ========================================================================
   9. HEADING TITLES
   ======================================================================== */

/* 9.1 Global Heading Styles */
.heading-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

/* 9.2 Heading Underline */
.heading-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #d4a574;
}

/* ========================================================================
   10. LEERBEDRIJF SECTION
   ======================================================================== */

/* 10.1 Leerbedrijf Container */
#services.our-service {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
}

/* 10.2 LEERBEDRIJF titel BOVEN - zoals alle andere secties */
#services .heading-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

/* Gouden streep onder LEERBEDRIJF titel */
#services .heading-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
}

/* 10.3 Leerbedrijf Content */
.leerbedrijf-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.leerbedrijf-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 10.4 Leerbedrijf Text - GECENTREERD */
.leerbedrijf-text {
    flex: 1;
    text-align: center;
    margin-bottom: 40px;
}

.leerbedrijf-text h6 {
    color: #d4a574;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.leerbedrijf-text h3 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Gouden lijn onder titel - GECENTREERD */
.leerbedrijf-text .line {
    display: block;
    width: 60px;
    height: 2px;
    background: #d4a574;
    margin: 20px auto;
}

/* Story text styling - GECENTREERD */
.leerbedrijf-story {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leerbedrijf-story .big-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #666;
    text-align: center;
}

.leerbedrijf-story p {
    margin-bottom: 20px;
    color: #777;
    line-height: 1.8;
    text-align: center;
}

/* 10.5 Leerbedrijf Features - GECENTREERD */
.leerbedrijf-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
    width: 100%;
}

.feature-item i {
    font-size: 20px;
    color: #d4a574;
    margin-right: 15px;
}

.feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* 10.6 Leerbedrijf CTA - GECENTREERD */
.leerbedrijf-cta {
    margin-top: 30px;
    text-align: center;
}

.leerbedrijf-cta p {
    margin-bottom: 25px;
    color: #777;
    line-height: 1.8;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 10.7 Leerbedrijf Image */
.leerbedrijf-image {
    flex: 1;
    text-align: center;
}

.leerbedrijf-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 10.8 Responsive */
@media (max-width: 991px) {
    .leerbedrijf-content {
        flex-direction: column;
    }
    
    .leerbedrijf-text, 
    .leerbedrijf-image {
        margin-bottom: 30px;
        text-align: center;
    }
}

/* ========================================================================
   11. SLICK SLIDER STYLES
   ======================================================================== */

/* 11.1 Slider Base */
.slick-slider {
    position: relative;
}

/* 11.2 Navigation Arrows */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #d4a574;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background: #b8935f;
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

/* 11.3 Arrow Icons */
.slick-prev::before, .slick-next::before {
    font-size: 18px;
    color: white;
}

.slick-prev::before {
    content: '‹';
}

.slick-next::before {
    content: '›';
}

/* 11.4 Dots Navigation */
.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots .slick-active button {
    background: #d4a574;
}

/* ========================================================================
   12. TESTIMONIAL SECTION
   ======================================================================== */

/* 12.1 Testimonial Container */
#testimonial.client-testimonial {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
}

/* 12.2 Testimonial Title - gecentreerd met gouden streep */
#testimonial .heading-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

/* Gouden streep onder titel */
#testimonial .heading-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
}

/* 12.3 Google Reviews Container */
.google-reviews-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.google-reviews-container iframe {
    border-radius: 10px;
    min-height: 400px;
}

/* Google Reviews Styling */
.fake-google-reviews {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.google-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.rating {
    font-size: 18px;
    font-weight: bold;
    color: #fbbc04;
}

.spacer {
    height: 20px;
}

.review-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a73e8;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.reviewer-details strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #fbbc04;
    font-size: 14px;
}

.time {
    color: #5f6368;
    font-size: 12px;
}

.review-item p {
    color: #3c4043;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.more {
    color: #1a73e8;
    cursor: pointer;
    font-weight: 500;
}

.more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .google-reviews-container {
        padding: 10px;
    }
    
    .google-reviews-container iframe {
        height: 400px;
    }
}

/* ========================================================================
   13. COUNTER SECTION
   ======================================================================== */

/* 13.1 Counter Container */
.counter-banner {
    padding: 80px 0;
    background: #333;
    color: white;
    text-align: center;
}

/* 13.2 Counter Wrapper - GECENTREERD */
.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* 13.3 Counter Box - GECENTREERD */
.counter-box {
    text-align: center;
    padding: 20px;
    flex: 1;
    max-width: 250px;
    min-width: 200px;
    margin: 0 auto;
}

/* 13.4 Counter Image */
.counter-img {
    margin-bottom: 20px;
    text-align: center;
}

.counter-img img {
    max-width: 60px;
    height: auto;
    margin: 0 auto;
}

/* 13.5 Counter Text */
.counter-text {
    text-align: center;
}

.counter-text h5 {
    font-size: 3rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 10px;
    text-align: center;
}

.counter-text p {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

/* 13.6 Responsive */
@media (max-width: 768px) {
    .counter-wrapper {
        flex-direction: column;
    }
    
    .counter-box {
        margin-bottom: 30px;
        max-width: 100%;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .counter-wrapper {
        justify-content: center;
    }
    
    .counter-box {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

/* ========================================================================
   14. TEAM SECTION
   ======================================================================== */

/* 14.1 Team Container */
#our-team.our-team {
    padding: 100px 0;
    background: white;
    text-align: center;
}

/* 14.2 ONS TEAM titel - gecentreerd op eigen regel */
#our-team .heading-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

/* Gouden streep onder ONS TEAM */
#our-team .heading-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
}

/* 14.3 Team Grid Layout - Single Member */
.our-team-grid.single-member {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.our-team-grid .our-team-box {
    max-width: 320px;
    text-align: center;
    position: relative;
}

/* Gouden streep onder de foto */
.our-team-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
}

/* 14.4 Team Image */
.our-team-img {
    margin-bottom: 0;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.our-team-img img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    display: block;
}

.our-team-box:hover .our-team-img img {
    filter: grayscale(0%);
}

/* 14.5 Team Text */
.our-team-text {
    background: #000;
    color: white;
    padding: 20px;
    margin-top: 0;
}

.our-team-text h5 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.our-team-text span {
    font-size: 14px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: block;
}

/* ========================================================================
   15. PRICING SECTION
   ======================================================================== */

/* 15.1 Pricing Container */
#pricing.our-pricing {
    padding: 100px 0;
    background: #f9f9f9;
}

/* 15.2 ONZE PRIJZEN titel - GECENTREERD BOVEN */
#pricing .heading-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

/* Gouden streep onder ONZE PRIJZEN titel */
#pricing .heading-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
}

/* 15.3 Pricing Wrapper */
.our-pricing-wrapper {
    margin-bottom: 50px;
    text-align: center;
}

/* 15.4 Tab Navigation */
.tabs {
    margin-bottom: 40px;
    text-align: center;
}

.tabs ul {
    display: flex;
    justify-content: center;
    list-style: none;
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.tabs ul li {
    margin: 0 20px;
}

.tabs ul li a {
    display: block;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.tabs ul li a.active,
.tabs ul li a:hover {
    color: #d4a574;
}

.tabs ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #d4a574;
}

/* 15.5 Tab Content */
.item {
    display: none;
}

.item.active {
    display: block;
}

/* 15.6 Price List */
.price-list-main {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
}

.price-list-full-row {
   display: flex;
   margin-bottom: 30px;
   justify-content: center;
}

.price-list-row {
   flex: 1;
   max-width: 380px;
}

.price-list-row.right-space {
   margin-right: 15px;
}

.price-list-row.left-space {
   margin-left: 15px;
}

/* 15.7 Price Box */
.price-list-box {
   background: white;
   padding: 30px;
   border-radius: 10px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   text-align: center;
   min-height: 180px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.price-list-box:hover {
   transform: translateY(-5px);
}

/* 15.8 Price Inner Box */
.price-list-inner-box {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 15px;
   padding-bottom: 15px;
   border-bottom: 1px dotted #ccc;
}

.price-list-service-name {
   font-weight: 600;
   font-size: 16px;
   color: #333;
   text-align: left;
}

.price-list-service-price {
   font-weight: 700;
   font-size: 18px;
   color: #d4a574;
}

/* 15.9 Price Description */
.price-list-discription {
   flex-grow: 1;
   display: flex;
   align-items: center;
   justify-content: center;
}

.price-list-discription p {
   color: #666;
   line-height: 1.6;
   margin: 0;
   text-align: center;
}

/* 15.10 CTA Box */
.cta-box {
    display: flex;
    align-items: center;
    background: #333;
    color: white;
    padding: 30px;
    margin: 50px auto;
    border-radius: 10px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 800px; /* Smaller maken */
}

.cta-box-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 30px;
    text-align: center;
    width: 100%;
}

.cta-box-hours i {
    font-size: 24px;
    color: #d4a574;
    margin-right: 15px;
}

.cta-appoint-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-appoint-btn:hover {
    background: #b8935f;
    color: white;
    transform: translateY(-2px);
}

.cta-appoint-btn i {
    margin-left: 10px;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        max-width: 90%;
    }
    
    .cta-box-hours {
        margin-right: 0;
        margin-bottom: 20px;
        flex-direction: column;
    }
    
    .price-list-full-row {
        flex-direction: column;
    }
    
    .price-list-row.right-space,
    .price-list-row.left-space {
        margin: 0 0 20px 0;
    }
    
    .tabs ul {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tabs ul li {
        margin: 5px 0;
    }
    
    .tabs ul li a {
        border-radius: 5px;
    }
}

/* ========================================================================
   16. DISCOUNT SECTION
   ======================================================================== */

/* 16.1 Discount Container */
.get-discount {
    padding: 80px 0;
    background: #333;
    color: white;
    text-align: center;
}

/* 16.2 Discount Image */
.get-discount-img {
    margin-bottom: 30px;
}

.get-discount-img img {
    max-width: 80px;
    height: auto;
}

/* 16.3 Discount Content */
.get-discount-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.promocode {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 5px;
    display: inline-block;
}

.get-discount p {
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: center;
}

/* ========================================================================
   17. APPOINTMENT SECTION
   ======================================================================== */

/* 17.1 Appointment Container */
#appointment.make-appointment {
    padding: 100px 0;
    background: white;
}

/* 17.2 Appointment Left Section */
.make-appointment-left-section {
    text-align: center;
    margin-bottom: 40px;
}

.make-appointment-left-section .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

/* 17.3 Hours List */
.hours-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
}

.hours-list ul li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.hours-list ul li:last-child {
    border-bottom: none;
}

.hours-list ul li span:first-child {
    color: #333;
}

.hours-list ul li span:last-child {
    color: #d4a574;
}

/* 17.4 Appointment Right Section */
.make-appointment-right-section {
    text-align: center;
}

.make-appointment-right-section .heading-title {
    text-align: center;
    margin-bottom: 40px;
}

/* 17.5 Appointment Form */
.make-appointment-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.appointment-form-field {
    margin-bottom: 20px;
    position: relative;
}

.appointment-form-field input,
.appointment-form-field select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    text-align: left;
}

.appointment-form-field input:focus,
.appointment-form-field select:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.2);
}

/* 17.6 Calendar Icon */
.appointment-calender {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4a574;
    font-size: 18px;
}

/* 17.7 Submit Button */
.appointment-submit-field input[type="submit"] {
    background: #d4a574;
    color: white;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-submit-field input[type="submit"]:hover {
    background: #b8935f;
    transform: translateY(-2px);
}

/* ========================================================================
   18. GALLERY SECTION
   ======================================================================== */

/* 18.1 Gallery Container */
#gallery.our-gallery {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
}

/* 18.2 GALERIJ titel - GECENTREERD BOVEN de afbeeldingen */
#gallery .heading-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

/* Gouden streep onder GALERIJ titel */
#gallery .heading-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
}

/* 18.3 Gallery Tabs - VERBERG omdat ze leeg zijn */
.gallery-tabs {
    display: none;
}

/* 18.4 Gallery Content - GECENTREERD */
.tab-content {
    display: none;
}

.tab-content.current {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

/* 18.5 Gallery Columns */
.tab-col {
    flex: 0 0 auto;
    padding: 10px;
    min-width: 200px;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 200px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-img:hover img {
    transform: scale(1.1);
}

.gallery-img a {
    display: block;
    height: 100%;
}

/* 18.6 Responsive */
@media (max-width: 768px) {
    .tab-content.current {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-col {
        max-width: 100%;
    }
}

/* ========================================================================
   19. JOIN MEMBER SECTION
   ======================================================================== */

/* 19.1 Join Member Container */
.join-member {
    padding: 60px 0;
    background: #333;
    color: white;
}

/* 19.2 Join Member Content */
.join-member-left h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.join-member-right {
    text-align: center;
    margin-top: 20px;
}

/* ========================================================================
   20. LATEST NEWS SECTION
   ======================================================================== */

/* 20.1 News Container */
#blog.latest-news {
    padding: 100px 0;
    background: white;
}

/* 20.2 News Row - GECENTREERD */
.latest-news-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 20.3 News Block - GECENTREERD */
.latest-news-block {
    margin-bottom: 30px;
    max-width: 450px;
    flex: 0 0 auto;
}

.latest-news-block-inner {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.latest-news-block-inner:hover {
    transform: translateY(-10px);
}

/* 20.4 News Image */
.news-block-img {
    height: 250px;
    overflow: hidden;
}

.news-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.latest-news-block-inner:hover .news-block-img img {
    transform: scale(1.1);
}

/* 20.5 News Date */
.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4a574;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.news-date-inner b {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.news-date-inner {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 20.6 News Text */
.news-text {
    padding: 30px;
    text-align: center;
}

.news-text span {
    color: #d4a574;
    font-size: 14px;
    margin-right: 15px;
}

.news-text p {
    margin: 15px 0 20px;
    color: #666;
    line-height: 1.6;
}

.news-text a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.news-text a:hover {
    color: #b8935f;
}

/* 20.7 Responsive */
@media (max-width: 768px) {
    .latest-news-row {
        flex-direction: column;
        align-items: center;
    }
    
    .latest-news-block {
        max-width: 100%;
    }
}

/* ========================================================================
   21. BRAND SECTION
   ======================================================================== */

/* 21.1 Brand Container */
#brands.brand-section {
    padding: 80px 0;
    background: #f9f9f9;
}

/* 21.2 Brand Logo Slider */
.testimonial-logo {
    text-align: center;
}

.testi-logo-img {
    padding: 0 20px;
    text-align: center;
}

.testi-logo-img a {
    display: block;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.testi-logo-img a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testi-logo-img img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.testi-logo-img a:hover img {
    filter: grayscale(0%);
}

/* ========================================================================
   22. MAP SECTION
   ======================================================================== */

/* 22.1 Map Container */
#location.map-banner {
    padding: 100px 0 50px;
    background: white;
}

/* 22.2 Map Top Icons */
.map-top-ic {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    justify-content: center;
}

.map-top-block {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    background: #f9f9f9;
    margin: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.map-top-block:hover {
    background: #d4a574;
    color: white;
}

.map-top-block:hover i {
    color: white !important;
}

/* 22.3 Map Icons */
.map-inner-ic {
    margin-right: 20px;
}

.map-inner-ic i {
    font-size: 30px;
    color: #d4a574;
}

/* 22.4 Map Text */
.map-top-text span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.map-top-text p {
    margin: 0;
    color: #666;
}

.map-top-text a {
    color: #666;
    text-decoration: none;
}

.map-top-text a:hover {
    color: #d4a574;
}

/* 22.5 Map Image */
.map-img {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-img iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================================================
   23. FOOTER SECTION
   ======================================================================== */

/* 23.1 Footer Container */
.footer {
    background: #222;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

/* 23.2 Footer Logo */
.footer-logo {
    margin-bottom: 40px;
}

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

/* 23.3 Footer Navigation */
.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.footer-nav ul li {
    margin: 5px 20px;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #d4a574;
}

/* 23.4 Subscribe Section */
.subscribe-us h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.subscribe-us p {
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* 23.5 Subscribe Email */
.subscribe-email {
    display: flex;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 50px;
    overflow: hidden;
}

.subscribe-email input[type="text"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: white;
    font-size: 16px;
}

.subscribe-email input[type="text"]:focus {
    outline: none;
}

.subscribe-email input[type="submit"] {
    padding: 15px 30px;
    background: #d4a574;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.subscribe-email input[type="submit"]:hover {
    background: #b8935f;
}

/* 23.6 Social Icons */
.social-ic ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.social-ic ul li {
    margin: 0 10px;
}

.social-ic ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: #ccc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-ic ul li a:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-2px);
}

/* 23.7 Copyright */
.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}

.copyright a {
    color: #d4a574;
    text-decoration: none;
}

.copyright a:hover {
    color: #b8935f;
}

/* 23.8 Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-top:hover {
    background: #b8935f;
    color: white;
    transform: translateY(-3px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ========================================================================
   24. RESPONSIVE DESIGN
   ======================================================================== */

/* 24.1 Large Tablets and Desktops */
@media (max-width: 1199px) {
    .banner-text h1 {
        font-size: 3rem;
    }
    
    .heading-title {
        font-size: 2.5rem;
    }
}

/* 24.2 Tablets */
@media (max-width: 991px) {
    .header .table-cell {
        display: none;
    }
    
    .mobile-ic {
        display: flex;
    }
    
    .logo {
        margin: 0;
    }
    
    .timing-section {
        flex-direction: column;
    }
    
    .about-left-section, .about-right-section {
        margin-bottom: 30px;
    }
    
    .tab-col {
        flex: 0 0 50%;
    }
    
    .map-top-block {
        flex: 1 1 100%;
        margin: 5px 0;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box-hours {
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .join-member-right {
        text-align: center;
        margin-top: 20px;
    }
}

/* 24.3 Mobile Devices */
@media (max-width: 767px) {
    .banner-text h1 {
        font-size: 2.5rem;
    }
    
    .banner-text p {
        font-size: 16px;
    }
    
    .heading-title {
        font-size: 2rem;
    }
    
    .ss-prev, .ss-next {
        display: none;
    }
    
    .price-list-full-row {
        flex-direction: column;
    }
    
    .price-list-row.right-space,
    .price-list-row.left-space {
        margin: 0 0 20px 0;
    }
    
    .tab-col {
        flex: 0 0 100%;
    }
    
    .footer-nav ul {
        flex-direction: column;
    }
    
    .footer-nav ul li {
        margin: 10px 0;
    }
    
    .subscribe-email {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .subscribe-email input[type="text"] {
        border-radius: 10px 10px 0 0;
    }
    
    .subscribe-email input[type="submit"] {
        border-radius: 0 0 10px 10px;
    }
    
    .tabs ul {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tabs ul li {
        margin: 5px 0;
    }
    
    .tabs ul li a {
        border-radius: 5px;
    }
}

/* 24.4 Small Mobile Devices */
@media (max-width: 575px) {
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .heading-title {
        font-size: 1.8rem;
    }
    
    .timing-section-box {
        flex-direction: column;
        text-align: center;
    }
    
    .timing-section-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .make-appointment-form {
        padding: 20px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 10px;
    }
    
    .map-top-block {
        flex-direction: column;
        text-align: center;
    }
    
    .map-inner-ic {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ========================================================================
   25. UTILITY CLASSES AND EXTRAS
   ======================================================================== */

/* 25.1 Fancybox Override */
.fancybox-margin {
    margin-right: 15px;
}

/* 25.2 Icon Font Base */
.icofont {
    font-family: 'IcoFont';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 25.3 Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 25.4 Selection Color */
::selection {
    background: #d4a574;
    color: white;
}

::-moz-selection {
    background: #d4a574;
    color: white;
}