/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 2px solid red; */
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  background-color: #d1cece;
  background-color: #f8f8f0;
  overflow-x: hidden;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Layout Utilities */
.container {
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
}

/* Image Wrapper (Hero & Services) */
.image-wrapper,
.image-wrapper-services {
  position: relative;
  display: inline-block;
  width: 100vw;
  overflow: hidden;
  min-height: 10rem;
}

.image-wrapper {
  height: 550px;
  
}

.image-wrapper-services {
  height: 20rem;
}

.image-wrapper img,
.image-wrapper-services img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  z-index: 0;
  position: absolute;
}

/* Overlays */
.overlay,
.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lang-option{
  padding-bottom: 2px;
}
.overlay {

/* background-color: rgb(10, 186, 181, 0.4);


background: linear-gradient(135deg, 
  rgba(10, 186, 181, 0.8), 
  rgba(6, 160, 155, 0.8), 
  rgba(4, 128, 125, 0.8)
);

background: linear-gradient(135deg, 
  rgba(94, 226, 220, 0.8),   
  rgba(10, 186, 181, 0.8),   
  rgba(6, 121, 118, 0.8)     
);

background: linear-gradient(135deg, 
  rgba(10, 186, 181, 0.8),   
  rgba(125, 95, 255, 0.8)    
);

background: linear-gradient(135deg, 
  rgba(10, 186, 181, 0.5),  
  rgba(58, 141, 255, 0.5)   
); */


background-color: rgba(0, 0, 0, 0.121);

background-color: hsl(180, 25%, 25%, 0.9);
}

.services-overlay {
  height: 100px;
  

}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background: #000;
  background: #f8f8f0;

  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.3);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar a {
  color: #fff;
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #f39c12;
  color: green;
}



#title::after {
  content: '©';
  position: absolute;
  bottom: -1px;
  right: -20px;
  font-size: 1rem;
  opacity: 0.8;
}

#subtitle {
  position: absolute;
  top: calc(50%);
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  color: white;
  text-align: center;
  z-index: 9000;
  font-weight: 500;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Scroll & Services Links */
.scroll-button,
.services-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  z-index: 9000;
}

.scroll-button {
  top: calc(50% + 7rem);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1.2rem;
}

.scroll-button:hover {
  text-decoration: underline;
  cursor: pointer;
}

.services-link {
  top: calc(50% + 9rem);
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.services-link:hover {
  opacity: 0.8;
}

.services-link i {
  font-size: 1.8rem;
}

/* Info Section */
.info-container {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 40px;
  text-align: left;
  max-width: 100rem;
  margin: auto;
}

.info-block {
  /* flex: 1; */
  max-width: 400px;
  padding: 15px 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.info-block[dir="rtl"] {
  text-align: right;
}

/* Steps Section */
.steps-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 10;
  padding: 2rem;
  gap: 2rem;
  border-radius: 4px;



}

.steps-container .step i,
.steps-container .step p {
  color: white;
  margin-bottom: 1rem;
}

.ar-step {
  padding: 0 2rem;
}

/* Services & Contact Form */



#services{
    margin-top: 10rem;
    margin-bottom: 2rem;
}

#services h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

#contact-form {
  background: white;
  padding: 25px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 30rem;
  margin-top: 3rem;
}

#contact-form label {
  font-weight: bold;
  color: #555;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

#contact-form textarea {
  resize: vertical;
}

#contact-form button {
  margin-top: 15px;
  width: 100%;
  background-color: #000;
  border: none;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #3e3e3e;
}

/* Footer */
.footer {
  background-color: #000;
  color: #eee;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

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

input[type="checkbox"] {
  /* Exempel på styling */
  width: 18px;
  height: 18px;
  accent-color: #007bff; /* Färg i moderna webbläsare */
  margin-bottom: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.footer-links li a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #f39c12;
  color: green;
}

.footer-copy {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #bbb;
}

/* Flags */
.flag-icon {
  display: inline-block;
  width: 1em;
  height: 1.8em;
  margin: 0 0.3em 0 0.2em;
  border-radius: 50%;
  object-fit: cover;
  /* box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); */
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.flag-icon:hover {
  transform: scale(1.3);
}

.lang-active {
  /* color: #f39c12 !important;
  color: green !important; */
 
  border-bottom: 2px solid rgba(255, 255, 255, 0.567);
  border-bottom: 2px solid rgba(0, 0, 0, 0.499);
}


/* Title Container & Logo Icon */
.title-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-icon {
  width: 40px;
  height: auto;
}

.header-title {
  position: relative;
  height: 450px;
  z-index: 20;
}

.header-title img {
  position: relative;
  max-width: 5%;
  top: 7.8rem;
  left: 31rem;

}

.title {
  max-width: 90%;
  margin: 0 auto 1rem;
}


.info-block-wide {
  max-width: none;          /* Ta bort maxbredd */
  width: 80vw;              /* Eller 95vw, beroende på hur brett du vill ha det */
  padding-left: 1rem;       /* Lite padding så texten inte klistrar mot kanten */
  padding-right: 1rem;
  text-align: left;
}

.info-block-wide p{
    margin: 0.2rem 0 2rem 0;
}


.info-block-wide-ul{
    margin: 0.2rem 0 2rem 0;

}
.info-block-wide-ul li{

margin-left: 2em;
padding: 0.3rem;
}

.info-block-wide li{
  list-style-position: inside;
  list-style-type: square;
}



.separator {
  height: 4px;                 /* tjockare linje */
  background: linear-gradient(90deg, #00000009, #00000010);
  border-radius: 2px;          /* mjuka kanter */
  margin: 2rem 0;              /* luft ovan och under */
  width: 100%;                 /* full bredd */
  max-width: 80rem;            /* maxbredd om du vill */
  margin-left: auto;
  margin-right: auto;          /* centrerad */
}



.about-separator {
  height: 4px;                 /* tjockare linje */
  background: linear-gradient(90deg, #00000009, #00000010);
  border-radius: 2px;          /* mjuka kanter */
  margin: 2rem 0;              /* luft ovan och under */
  width: 100%;                 /* full bredd */
  max-width: 80rem;            /* maxbredd om du vill */
  margin-left: auto;
  margin-right: auto;          /* centrerad */
  /* margin-left: 0; */
  /* margin-right: 0; */
}

#contact-button a{
    /* font-weight: bold; */
    color: green;
}

#descriptive-title {
  color: green;
  color: white;
  text-align: center;
  margin-top: 4rem;
  font-family: 'Trebuchet MS', sans-serif;
  /* font-size: 1.5rem; */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  /* display: inline-block; */
  padding-bottom: 0.7rem;
  text-shadow: 1px 1px 3px rgba(0, 100, 0, 0.25);

  font-size: clamp(1rem, 1.5vw, 3rem);
}

#descriptive-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40rem;
  height: 4px;
  background: linear-gradient(to right, rgba(0, 128, 0, 0.174), rgba(50, 205, 50, 0.218));
  background: linear-gradient(to right, rgba(0, 128, 0, 0.2), rgba(0, 128, 0, 0.2));


  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.05),
    transparent
  );

  border-radius: 2px;
}


/* .active{
    color: green !important;
} */

.navbar a.active {
  /* color: green; */
  /* text-align: center; */
  border-bottom: 2px solid rgba(255, 255, 255, 0.567);
  border-bottom: 2px solid rgba(0, 0, 0, 0.499);
}
#contact-form {
  width: 35rem;        /* or any width you want */
  margin: 3rem auto;      /* centers horizontally */
  padding: 1em;
  box-sizing: border-box;
}






/* Form Container */
form {
  background: white;
  padding: 25px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 35rem;
  margin: 3rem auto;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  min-width: 50rem;
  max-width: 55rem;
}

/* Labels */
form label {
  display: block;
  font-weight: bold;
  color: #555;
  margin-bottom: 6px;
  margin-top: 15px;
}

/* Inputs, textarea, select */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="file"],
form select,
form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  margin-top: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="file"]:focus,
form select:focus,
form textarea:focus {
  border-color: #000;
  outline: none;
}

/* Textarea resize */
form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Checkbox inside label */
form label input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 0;
}

/* Submit button */
form button[type="submit"] {
  margin-top: 25px;
  width: 100%;
  background-color: #000;
  border: none;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #3e3e3e;
}




.services-overlay{
    height: auto;
    background-color: rgba(0, 0, 0, 0.699);
  background-color: hsl(180, 25%, 25%, 0.7);

}

#services{
    
}





.image-wrapper-services img {
  width: 100vw;
  min-height: 650px;
  object-fit: cover;
}
.steps-container {
  position: absolute;
  top: 50%;             /* Push top edge to 50% */
  left: 50%;            /* Center horizontally */
  transform: translate(-50%, -50%);  /* Offset by half its width & height */
  width: 100%;          /* Or whatever width you want */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}




.fa-chevron-down{
  /* border: 2px solid red; */

}


/* Grundstil för cookie-banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #ccc;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: system-ui, sans-serif;
}

.cookie-banner p {
  margin: 0 0 10px 0;
  text-align: center;
  font-size: 15px;
  color: #333;
}

.cookie-banner a {
  color: #0057a5;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-buttons button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#accept-all {
  background-color: #007b3d;
  color: white;
}

#reject-all {
  background-color: #e0e0e0;
  color: #333;
}

#settings {
  background-color: #ffffff;
  border: 1px solid #ccc;
  color: #333;
}

/* Stil för inställningspanelen */
.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 10001;
  font-family: system-ui, sans-serif;
  border-radius: 8px;
}


.cookie-settings h3 {
  margin-top: 0;
  font-size: 18px;
  color: #222;
}

.cookie-settings label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
}

.cookie-settings input[type="checkbox"] {
  margin-right: 6px;
}

.cookie-settings button {
  background-color: #007b3d;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

#cookie-form{
    margin-right: auto;
}

/* Justera formuläret så det liknar resten */
.cookie-form h3 {
  margin-top: 10px;
  font-size: 16px;
  color: #222;
}

/* Mobilanpassning */
@media (max-width: 600px) {
  .cookie-banner {
    padding: 16px;
  }
  .cookie-settings {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: 20px;
  }
}









#title {
  position: static;
  /* transform: none; */
  /* top: auto; */
  /* left: auto; */
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  text-align: left;
  margin: 0;



  font-family: 'Times New Roman', Times, serif;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 9000;
  text-align: center;
  overflow: contain;




}


.title-wrapper {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 0px;  */
  padding-top: 7.8rem; 



  justify-content: center;
}

/* Style the icon */
.icon {
  min-width: 100px; /* adjust as needed */
  height: auto;
  display: block;
  /* Remove any absolute positioning from images inside header-title */
  position: static !important;
  top: auto !important;
  left: auto !important;
}

#title {
  position: relative; /* for absolute positioning inside */
  display: inline-block; /* shrink-wrap width */
  /* your existing styles */

}


.form-intro {
  margin: 0 auto 2rem auto; /* centrerad med lite luft under */
  padding: 1rem;
  border-left: 4px solid green; /* liten accentkant i blått */
  border-right: 4px solid green;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.426);
  /* max-width: 30rem; */
}

.form-intro p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
}


.info-block-wide h1{

  color: rgb(0, 78, 0);
}


  .info-block-wide p,
.info-block-wide ul {
  width: 100%;
}

.about-separator {
  /* width: 150%; */
  /* height: 2px; */
  /* background-color: black; */
  margin: 2rem 0;
}







.header-title {
  position: relative !important;
  text-align: center !important;
  padding: 2rem 2rem !important;
  background-image: url('images/new-banner.jpg') !important; /* ← byt till rätt bild */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: white !important;
  overflow: hidden !important;
  min-height: 700px !important;
}

.header-title::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  /* background-color: rgba(0, 0, 0, 0.5) !important; */
  background-color: hsl(180, 25%, 25%, 0.8);

  z-index: 0 !important;
}

.header-title > * {
  position: relative !important;
  z-index: 1 !important;
}

.title-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.icon-and-title {
  display: flex !important;
  align-items: center !important;
  /* gap: 0rem !important; */
  /* flex-wrap: wrap !important; */
  justify-content: center !important;
  transform: translateX(-50px); /* flytta 20px till vänster */
}

.icon {
  width: 60px !important;
  height: auto !important;
  max-width: 100% !important;
}

#title {
  font-size: 3.5rem !important;
  margin: 0 !important;
}

.subtitle {
  /* margin-top: 1rem !important; */
  font-size: 1.2rem !important;
  font-weight: normal !important;
  color: white !important;
  text-align: center !important;
}

#subtitle {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin-top: 5rem !important;
  font-size: 1rem !important;
  color: white !important;
  text-align: center !important;
  position: relative !important;
}

.services-link {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin-top: 5rem !important;
  text-decoration: none !important;
  color: white !important;
  position: relative !important;
  z-index: 1 !important;

}


.services-link h2 {
  margin: 0 !important;
}

.services-link i {
  margin-top: 0.5rem !important;
  font-size: 1.5rem !important;
}


.slogan{
  color: white !important;
  font-size: 1rem !important;
}


.services-link i.fas.fa-chevron-down {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 10px rgba(4, 254, 0, 0.7);
  transition: transform 0.3s ease, color 0.3s ease;
  color: rgb(0, 255, 0);
  display: inline-block;
}

.services-link:hover i.fas.fa-chevron-down {
  transform: translateY(4px); /* pilen "rör sig" lite neråt vid hover */
  color: rgba(0, 255, 0, 0.462);
  text-shadow: 0 0 8px rgba(34, 203, 65, 0.844);
}





@media (max-width: 600px) {
  /* Förhindra horisontell scroll */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .language-switcher{
    align-self: center;
  }
  /* NAVBAR – vertikal layout och pushar ner allt */
  .navbar {
    position: relative; /* tar bort fixed om det fanns */
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 20px;
  }

  .header-title{
  min-height: 500px !important;

  }

  .navbar ul {

    justify-content: center;
    /* flex-direction: column; */
    /* gap: 10px; */
    gap: 20px;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 5px;
  }


  .navbar ul li {
    margin-bottom: 8px;
  }

  .navbar a {
    font-size: 0.85rem;
  }

  /* INFO-DELEN – kolumn-layout */
  .info-container {
    flex-direction: column;
    align-items: center;
    padding: 10px 0px;
    /* align-items: center; */
    /* margin: auto; */
  }

.scroll-button,
.services-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  z-index: 9000;
  top: calc(50% + 5rem);

}
  .info-block {
    max-width: 100%;
    padding: 10px 0;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  /* FOOTER – kolumnlayout likt navbar */
  footer {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 13px;
    text-align: center;
    margin-bottom: 4rem;
  }



  .footer-copy {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
  }
#contact-form,
form {
  width: 90%;
  max-width: 100%;
  padding: 20px;
  margin: 2rem auto;
  box-sizing: border-box;
  display: block;         /* säkerställer att det inte beter sig som inline/flex */
  text-align: left;       /* valfritt – ändra till center om du vill centrera inputs också */
}

  /* Om du har en container runt form */
  .form-wrapper,
  .form-container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  input,
  textarea,
  select,
  button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }


.steps-container {
  /* position: static; */
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  height: auto;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  margin: 0 auto;
  top: 95px;


}

.step {
 flex: 0 1 calc(50% - 1rem); /* två per rad med gap */  box-sizing: border-box;
  width: 5%;
  max-width: 400px;
  font-size: 1rem;
  /* margin-bottom: 1rem; */
}

.step i{
  font-size: 1.7rem;
}

#privacy{
  width: 5%;
}
.header-title{
  bottom: 100px;
}
#title{
  font-size: clamp(0.2rem, 9vw, 5rem) !important;
  /* margin-right: -3rem; */
}
.icon{
  max-width: 10%;
  min-width: 1% !important;
  /* margin-left: 10px !important; */
  width: 65px !important;
  height: auto !important;
  flex-shrink: 0;

}
.icon-and-title{
  margin-left: 2rem !important;
}

#title {
  font-size: clamp(1.5rem, 8vw, 2.5rem) !important;
  text-align: center;
}
}



/* === Formstruktur – gäller alla skärmar === */
#contact-form,
form {
  width: 100%;
  max-width: 600px;           /* Begränsar bredd på stora skärmar */
  margin: 2rem auto;          /* Centrerar horisontellt */
  padding: 20px;
  box-sizing: border-box;
  display: block;
  text-align: left;
  background-color: #fff;     /* valfritt: bakgrundsfärg */
  border-radius: 8px;         /* valfritt: rundade hörn */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* valfritt: subtil skugga */
}

/* Om du använder en wrapper runt formuläret */
.form-wrapper,
.form-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* === Inputs, textarea, select, button === */
input,
textarea,
select,
button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Särskild stil för knappen */
button,
input[type="submit"] {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: auto;
}

button:hover,
input[type="submit"]:hover {
  background-color: #555;
}

/* === RESPONSIVITET FÖR SMÅ SKÄRMAR === */
@media (max-width: 600px) {
  #contact-form,
  form {
    min-width: 10rem;
    width: 90%;
    padding: 1rem;
    margin: 2rem auto;
  }

  .form-wrapper,
  .form-container {
    width: 100%;
    padding: 0 10px;
  }

  input,
  textarea,
  select,
  button {
    font-size: 1rem;
    padding: 0.75rem;
  }
  #subtitle{
    margin-top: 1rem !important;
  }
  .services-link{
    margin-top: 2rem !important;
  }
}




