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

body {
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #67c9b4;
    color: white;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 316px;
    height: 60px;
}

.logo {
    margin-top: 30px;
}


.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pictures {
    width: 200px;
    height: 200px;
    border: 8px solid;
    border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
    background-size: cover;
}
  
.first {
    background-image: url('images/kombi1.jpg');
}

.certificate-picture {
    max-width: 100%;
    height: auto;
}
  
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

#services {
    margin-top: 70px;
    background: #f4f4f4;
}

#jobs, #services, #about, footer  {
    background: #f4f4f4;
}

section {
    margin-top: 10px;
    margin: 10px 350px 0 350px;
    padding: 40px 25px;
    border: 2px solid rgb(231, 229, 229);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

footer {
    background: #f4f4f4;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    border: 2px solid rgb(231, 229, 229);
    padding: 40px 0;
    margin: 10px 350px 0 350px;
    margin-bottom: 15px;
}

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

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    gap: 20px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-column p {
    line-height: 1.6;
    margin-right: 25px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: #2b2727;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #2a9e3a;
}

.social-icons a, .top-icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #555;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #007BFF;
}

.contact-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-icon-container {
    display: flex;
    justify-content: space-between;
}

.top-icon {
    margin-top: 5px;
    width: 30px;
}

.top-icon:hover {
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
  }

  /* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

@media (max-width: 1270px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 60px;
        background: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .burger {
        display: block;
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .line2 {
        opacity: 0;
    }

    .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    section, footer {
        margin: 10px 20px 0 20px;
        padding: 40px 8px;
    }

    .navbar {
        padding: 20px 10px;
        height: 90px;
    }

    .logo {
        margin-top: 10px;
    }
}
