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

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

header {
  background: linear-gradient(rgba(34, 34, 34, 0.6), rgba(34, 34, 34, 0.6)), url('hero-image.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  background: #1abc9c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

section {
  padding: 50px 0;
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  max-width: 300px;
  margin: 15px;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}


.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.service-card {
  background-color: #1abc9c;
  padding: 15px 25px;
  min-width: 350px;
  max-width: 350px;
  margin: 15px;
  text-align: left;
}


.service-card h3,
.service-card p {
  color: white;
  margin-bottom: 10px;
}

.testimonial-slides {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-slide {
  max-width: 400px;
  margin: 15px;
  text-align:
  left;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 5px;
}

.contact {
  background-color: #f8f8f8;
  padding: 50px 0;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #666;
}

.about-us p {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.about-us-fsk p, h3{
  max-width: 800px;
  margin: auto;
  text-align: left;
  margin-top: 3px;
}
.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-image {
  flex: 1;
  padding: 0 0px;
  max-width: 500px;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

.contact-info {
  flex: 1;
  padding: 0 30px;
  max-width: 500px;
  text-align: left;
}

.logo {
  display: block;
  max-width: 250px; /* Ändra storleken efter dina önskemål */
  margin-bottom: 20px; /* Ändra avståndet under logotypen efter dina önskemål */
}

.fifty-percent {
  width: 50%;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}
[class*="col-"] {
  float: left;
  padding: 15px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

* {
box-sizing: border-box;
}