/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.5;
    color: #333;
}

/* Header */
header {
    background: url(banner_top.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

header .container {
    max-width: fit-content;
    margin: auto;
}

header h1 {
    font-size: 2em;
    background: blue;
    border-radius: 8px;
}

.container p {
    background: blue;
    border-radius: 8px;
    font-weight: bold;
}

header p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.cta-button, .cta-button_h {
    background: #fff;
    color: #4CAF50;
    padding: 10px 5px;
    border: none;
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: #ddd;
}

.cta-button_h:hover {
    background: #ddd;
    color: #4CAF50;
}

.divcontainer {
    padding: 2em;
    max-width: 1200px;
    margin: auto;
    background: url(banner.jpg) no-repeat center;
    background-size: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 1em;
    margin-bottom: 4em;
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #4CAF50;
}

/* Services & Benefits */
.service-list, .benefit-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: solid 2px #4CAF50;
}

.benefit {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: solid 2px #4CAF50;
}

.service h3, .benefit h3 {
    color: #4CAF50;
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: auto;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    background: #4CAF50;
    color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #4CAF50;
    color: #fff;
    font-size: 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

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

h1 > a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

h1 > a:active {
    color: white;
    background-color: transparent;
    text-decoration: underline;
}

h1 > a:visited {
    color: white;
    background-color: transparent;
    text-decoration: underline;
}

h1 > a:hover {
    color: lightgrey;
    background-color: transparent;
    text-decoration: none;
}

h3 > a:link {
    color: #4CAF50;
    background-color: transparent;
    text-decoration: underline;
}

h3 > a:active {
    color: #4CAF50;
    background-color: transparent;
    text-decoration: underline;
}

h3 > a:visited {
    color: #4CAF50;
    background-color: transparent;
    text-decoration: underline;
}

h3 > a:hover {
    color: #8A2BE2;
    background-color: transparent;
    text-decoration: none;
}

p a {
    color: #4CAF50;
    background-color: transparent;
    text-decoration: underline;
}

.tekst {
    padding: 30px 0px;
    text-align: justify;
    margin: auto;
    max-width: 1200px;
}

.tekst_center {
    padding: 30px 0px;
    text-align: center;
    margin: auto;
    max-width: 1200px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  height: 600px;
}

@media (max-width: 1250px) { 
    .tekst, .tekst_center {
        padding: 30px 20px;
    }
    .center {
      width: 100%;
    }
}

@media (max-width: 725px) { 
    h1 {
        display:none;
    }
}

.mobile {display:none;}
.desktop {display:block;}

@media (max-width: 600px) { 
    .mobile {display:block;}
    .desktop {display:none;}
    .center { height: fit-content;}
}

/* Header */
.header {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 0.5em 0;
    font-size: 1em;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
}

.header a {
  color: white;
  text-decoration: none;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 0.5em 0;
    font-size: 0.9em;
    position: fixed;
    width: 100%;
    bottom: 0;
}

