/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header */
header {
    background: #0a192f;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #64ffda 3px solid;
}

header::after {
    content: '';
    display: table;
    clear: both;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a {
    color: #64ffda;
    font-weight: bold;
}

header a:hover {
    color: #ccd6f6;
    font-weight: bold;
}

/* Showcase */
/* Voeg deze toe aan je bestaande CSS bestand of vervang bestaande waarden */

/* Toevoegen aan bestaande CSS bestand */

#showcase {
    background-color: #333 !important; /* Donkere achtergrondkleur om contrast te verhogen */
    padding: 2rem 0;
}

#showcase h1 {
    color: #ffffff !important; /* Helder wit voor goede leesbaarheid */
    font-size: 3rem;
    text-align: center;
}

#showcase p {
    color: #e0e0e0 !important; /* Lichtere tint wit voor subtitel */
    font-size: 1.2rem;
    text-align: center;
}

.button {
    background-color: #28a745 !important; /* Groene knop voor visueel contrast */
    color: #ffffff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

/* Maak de knop visueel aantrekkelijker */
.button:hover {
    background-color: #218838 !important; /* Donkere tint groen bij hover */
}



/* Services */
#services {
    padding: 40px 0;
    background: #fff;
}

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

.service-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-box img, .service-box i {
    margin-bottom: 15px;
}

/* About */
#about {
    padding: 40px 0;
    background: #0a192f;
    color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-image {
    max-width: 300px;
    border-radius: 5px;
}

.about-text {
    flex: 1;
}

/* Testimonials */
#testimonials {
    background: #f9f9f9;
    padding: 40px 0;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Contact Form */
#contact {
    padding: 40px 0;
    background: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    background: #64ffda;
    color: #0a192f;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.button:hover {
    background: #45e0bc;
}

/* Footer */
footer {
    padding: 20px;
    color: #ffffff;
    background-color: #0a192f;
    text-align: center;
}

footer nav ul {
    list-style: none;
    padding: 0;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* General styles */
h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* About Hero */
#about-hero {
    background: url('../images/about-hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#about-hero p {
    font-size: 24px;
}

/* About Content */
#about-content {
    padding: 60px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
    text-align: left;
}

.about-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Team Section */
#team {
    background: #f9f9f9;
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 5px;
}

/* Certifications Section */
#certifications {
    padding: 60px 0;
    background: #0a192f;
    color: #fff;
}

.cert-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.cert-list i {
    margin-right: 10px;
    color: #64ffda;
}


/* Services Hero */
#services-hero {
    background: url('../images/services-hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#services-hero p {
    font-size: 24px;
}

/* Services Overview */
#services-overview {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

#services-overview p {
    max-width: 800px;
    margin: 0 auto;
}

/* Services List */
#services-list {
    padding: 60px 0;
    background: #f9f9f9;
}

#services-list .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    color: #64ffda;
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
}

/* Methodology */
#methodology {
    padding: 60px 0;
    background: #0a192f;
    color: #fff;
}

.methodology-list {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.methodology-list li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Call to Action */
#cta {
    padding: 60px 0;
    background: #64ffda;
    text-align: center;
}

#cta h2 {
    color: #0a192f;
    margin-bottom: 20px;
}

#cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #0a192f;
}

#cta .button {
    background: #0a192f;
    color: #fff;
}

#cta .button:hover {
    background: #152a4e;
}


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header */
header {
    background: #0a192f;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #64ffda 3px solid;
}

header::after {
    content: '';
    display: table;
    clear: both;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a {
    color: #64ffda;
    font-weight: bold;
}

header a:hover {
    color: #ccd6f6;
    font-weight: bold;
}

/* Showcase Section with Banner Image */
#showcase {
    min-height: 400px;
    background: url('images/banner.jpg') no-repeat center center/cover; /* Add your image path here */
    text-align: center;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

#showcase h1 {
    font-size: 55px;
    margin-bottom: 20px;
    z-index: 1; /* Ensures the text stays above the image */
}

#showcase p {
    font-size: 20px;
    margin-bottom: 20px;
    z-index: 1;
}

#showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 0; /* Keeps the overlay below the text */
}

/* Services */
#services {
    padding: 40px 0;
    background: #fff;
}

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

.service-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-box i {
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 20px;
    color: #ffffff;
    background-color: #0a192f;
    text-align: center;
}

footer nav ul {
    list-style: none;
    padding: 0;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Contact Hero */
#contact-hero {
    background: url('../images/contact-hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#contact-hero p {
    font-size: 24px;
}

/* Contact Form */
#contact-form {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

#contact-form .container {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form h2 {
    margin-bottom: 20px;
}

#contact-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

#contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contact-form .form-group input,
#contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contact-form .form-group textarea {
    height: 150px;
}

#contact-form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background: #64ffda;
    color: #0a192f;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background: #45e0bc;
}

/* Privacy Hero */
#privacy-hero {
    background: url('../images/privacy-hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#privacy-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#privacy-hero p {
    font-size: 24px;
}

/* Privacy Content */
#privacy-content {
    padding: 60px 0;
    background: #f9f9f9;
}

#privacy-content .container {
    max-width: 800px;
    margin: 0 auto;
}

#privacy-content h2, #privacy-content h3 {
    color: #333;
}

#privacy-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}
