
/********************************************
    GLOBALA VARIABLER
********************************************/

:root {
    --main-color: #21334f;
    --section-gradient-light: linear-gradient(to bottom, #f4f4f4, #e0e0e0);
    --section-gradient-medium: linear-gradient(to bottom, #d4d4d4, #b0b0b0);
    --section-gradient-dark: linear-gradient(to bottom, #c0c0c0, #a0a0a0);
    --highlight-color: #4169A6;
    --footer-bg-color: linear-gradient(to bottom, #21334f, #000000);
    --footer-text-color: #f4f4f4;
    --main-padding: 30px;
    --main-border-radius: 15px;
    --shadow-light: 0px 10px 20px rgba(0, 0, 0, 0.1);
    --primary-background: linear-gradient(to bottom, #ffffff, #fafafa);
    --box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    --front-orange: linear-gradient(to bottom right, #f4a261, #f6b88c);
    --back-light-orange: rgba(255, 235, 205, 0.9);
    --front-red: linear-gradient(to bottom right, #e76f51, #f49886);
    --back-light-red: rgba(255, 200, 200, 0.9);
    --front-green: linear-gradient(to left, rgba(26, 128, 150, 0.4), rgba(26, 128, 150, 0.9));
    --back-light-green: rgba(200, 255, 200, 0.9);
    --front-blue: linear-gradient(to bottom right, #264653, #4a7b88);
    --back-light-blue: rgba(200, 220, 255, 0.9);
    --front-yellow: linear-gradient(to bottom right, #e9c46a, #f3da96);
    --back-light-yellow: rgba(255, 255, 200, 0.9);
    --link-color: #2a6368;
    --link-hover-color: #4899a3;
}

/********************************************
    RESET OCH NORMALISERING
********************************************/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Globala länkstilar */
p a, 
.content-text a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

p a:hover, 
.content-text a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background: var(--section-gradient-light);
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/********************************************
    TYPOGRAFI
********************************************/
h1, h2, h3 {
    color: var(--main-color);
    margin-bottom: 20px;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2rem; 
    text-align: center;
    font-weight: 700; 
    margin-bottom: 15px;
}

h2 {
    font-size: 1.5rem; 
    text-align: center;
    font-weight: 600; 
    margin-top: 30px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    text-align: center;
}

/********************************************
    CONTENT CONTAINER
********************************************/
.content-container {
    width: 80%; /* Smalare på desktop */
    max-width: 900px; /* Begränsa maxbredden */
    margin: 40px auto; /* Ökat vertikalt margin för mer luft */
    padding: 40px 60px 60px;
    font-size: 1rem;
    line-height: 1.8;
    background: white;
    border-radius: var(--main-border-radius);
    box-shadow: 
        0 -10px 15px -10px rgba(0,0,0,0.1), /* Övre skuggning */
        0 10px 15px -10px rgba(0,0,0,0.1), /* Undre skuggning */
        0 4px 6px rgba(0,0,0,0.05), /* Generell skuggning */
        0 10px 20px rgba(0,0,0,0.05); /* Extern skuggning */
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05); /* Subtil kantlinje */
}

/* Lägg till en subtil skugga runt hela containern */
.content-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(0,0,0,0.02);
    z-index: -1;
    border-radius: calc(var(--main-border-radius) + 5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/********************************************
    RESPONSIV ANPASSNING
********************************************/
@media (max-width: 768px) {
    .content-container {
        width: 95%;
        padding: 30px 25px;
        margin: 20px auto;
    }
}


/********************************************
    INTRO SEKTION
********************************************/
.header-icon {
    width: 120px;
    height: auto;
    display: block;
   margin: 60px auto 20px; /* Justerar avståndet från navbaren */
}

.intro-box {
    text-align: center;
    padding-bottom: 40px; /* Ökat utrymme under textrutan */
    box-shadow: 0 10px 15px -10px rgba(0,0,0,0.1); /* Skuggning i underkant */
}

.intro-box h1 {
    color: var(--main-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.intro-box p {
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px; /* Begränsa bredden */
    margin: 0 auto; /* Centrera horisontellt */
}

/********************************************
    PAPPERSEFFEKT OCH INNEHÅLL
********************************************/
/* Container och bakgrund */
.paper-container {
  background: #f5f5f5;
  padding: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 60px; /* Utrymme under navbaren */
}

/* Papperseffekt */
.paper-effect {
  background: white;
  max-width: 900px;
  width: 100%;
  padding: 3rem;
  border-radius: 15px;
  position: relative;
  box-shadow: 
    0 1px 1px rgba(0,0,0,0.08),
    0 2px 2px rgba(0,0,0,0.12),
    0 4px 4px rgba(0,0,0,0.16);
  margin: 0 auto 2rem;
}

/* Gradient overlay för mjuk övergång */
.paper-effect::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(180deg, rgba(245,245,245,0) 0%, rgba(245,245,245,1) 100%);
  border-radius: 0 0 15px 15px;
}

/* Innehållscontainer */
.paper-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Ikon styling */
.paper-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: block;
}

/* Rubrik styling - matchar övrig sajt */
.paper-title {
  font-size: 2.2em;
  text-align: center;
  color: #21334f;
  margin-bottom: 20px;
  text-shadow: 
    -1px -1px 0 #ffffff,
    1px 1px 2px rgba(0, 0, 0, 0.25);
}

/* Text styling - matchar övrig sajt */
.paper-text {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/********************************************
    MOBIL ANPASSNING
********************************************/
@media (max-width: 768px) {
  .paper-container {
    padding: 1rem;
    margin-top: 60px; /* Mindre marginal på mobil */
  }

  .paper-effect {
    padding: 2rem;
    margin-bottom: 1rem;
  }

  .paper-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }

  .paper-title {
    font-size: 1.9em;
  }

  .paper-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .paper-container {
    padding: 0.5rem;
  }

  .paper-effect {
    padding: 1.5rem;
  }

  .paper-title {
    font-size: 1.7em;
  }
}

/********************************************
    EXPERIENCE SEKTION - HUVUDSTILAR
********************************************/
.experience-section {
    background: linear-gradient(to bottom, white, #f9f9f9);
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.experience-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/********************************************
    RUBRIK
********************************************/
.experience-title {
    font-size: 2rem;
    font-weight: bold;
    color: #21334f;
    text-align: center;
    margin-bottom: 1rem;
}

/********************************************
    INNEHÅLL (TEXT OCH BILD)
********************************************/
.experience-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; /* För responsivitet */
}

.experience-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #21334f;
    text-align: justify;
}

.experience-image {
    max-width: 300px; /* Begränsar bildens storlek */
    flex: 0 0 auto; /* Håller bildens storlek konstant */
    align-self: center; /* Centrerar bilden vertikalt */
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Gör bilden rund */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/********************************************
    RESPONSIVITET
********************************************/
@media (max-width: 768px) {
    .experience-content {
        flex-direction: column; /* Staplar text och bild vertikalt */
    }

    .experience-text {
        text-align: center;
    }

    .experience-image {
        margin: 2rem 0;
    }
}


/********************************************
   DESKTOP - INFO BOX
********************************************/
.info-box {
   flex: 1;
   background: linear-gradient(to bottom, #2a6368, #4899a3);
   color: white;
   padding: 30px 30px 30px;
   border-radius: 50%;
   box-shadow: var(--shadow-light);
   text-align: center;
   width: 300px;
   height: 300px;
   min-width: 300px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin-left: -20px;
}

.info-box h4 {
   margin: 0 0 20px 0;
   font-size: 1.1em;
}

.info-box p {
   max-width: 90%;
   font-style: italic;
   font-size: 0.95em;
   line-height: 1.8;
   margin: 0 auto;
}

/********************************************
   MOBIL ANPASSNINGAR
********************************************/
@media (max-width: 768px) {
   .content-container {
       width: 95%;
       padding: 30px 25px;
   }
   
   .experience-content {
       flex-direction: column;
       gap: 15px;
   }
   
   .info-box {
       width: 300px;
       height: 300px;
       margin: 5px auto;
   }
   
   .info-box h4 {
       margin: 0 0 10px 0;
   }
   
   .info-box p {
       font-size: 0.85em;
       max-width: 85%;
   }
   
   h1 {
       font-size: 1.4rem;
   }
   
   .experience-section h3 {
       font-size: 1.4rem;
   }
   
   .full-width-below-box {
       font-size: 0.9em;
      
   }
} 

/********************************************
    STRATEGY SECTION & HEXAGON GRID
********************************************/
.strategy-section {
    position: relative;
    background: var(--section-gradient-medium);
    padding: 60px 20px;
    width: 100%;
    margin: 0 auto;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
    padding: 0 5%;
}

.strategy-section h2 {
    text-align: center;
    color: var(--main-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

/********************************************
    HEXAGON ITEM
********************************************/
.hexagon-item {
    position: relative;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

/********************************************
    HEXAGON FORM
********************************************/
.hexagon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: linear-gradient(to right, #1a8296, #21334f);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15%;
    box-sizing: border-box;
}

/********************************************
    HEXAGON CONTENT
********************************************/
.hexagon-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

.step-icon {
    font-size: 2.2em;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    position: absolute;
    top: -30px;
}

.hexagon-content h3 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.3em;
    margin: 0 0 8px;
    text-align: center;
    line-height: 1.2;
}

.hexagon-content p {
    color: white;
    font-size: 0.95em;
    line-height: 1.4;
    margin: 0;
    padding-top: 5px;
}

/********************************************
    HOVER EFFECTS
********************************************/
.strategy-grid:hover .hexagon-item:not(:hover) {
    filter: blur(2px);
    transform: scale(0.95);
}

.hexagon-item:hover {
    transform: scale(1.05);
    z-index: 2;
    filter: blur(0);
}

/********************************************
    RESPONSIVE DESIGN
********************************************/
@media (max-width: 768px) {
    .strategy-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 15px;
    }

    .strategy-section {
        padding: 40px 15px;
    }

    .hexagon-item {
        width: 100%;
        max-width: 340px;
        height: auto;
        aspect-ratio: 1.2;
        margin: 10px 0;
    }

    .hexagon {
        height: 100%;
        padding: 20px 15px;
    }

    .hexagon-content {
        position: relative;
        top: -15px;
        transform: none;
        left: 0;
        width: 90%;
        height: auto;
        padding: 10px;
        gap: 8px;
    }

    .step-icon {
        position: relative;
        top: 0;
        margin: 0 0 10px;
    }

    .step-icon img {
        width: 35px;
        height: 35px;
    }

    .hexagon-content h3 {
        font-size: 1.2em;
        margin: 0 0 5px;
    }

    .hexagon-content p {
        font-size: 0.9em;
        line-height: 1.3;
        padding: 0 10px;
        max-width: 90%;
    }
}
    

/********************************************
    STEPS CONTAINER
********************************************/
.steps-container {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   padding: 40px 20px;
   background: var(--section-gradient-dark);
   width: 100%;
   box-sizing: border-box;
   justify-content: center; 
}

.steps-container h2 {
   width: 100%;
   text-align: center;
   margin: 0 0 30px 0;
}

.step-box {
    flex: 1;
    max-width: 400px; 
    padding: 40px 20px; 
    background: var(--primary-background);
    border-radius: var(--main-border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px; 
}

.step-box:hover {
    transform: translateY(-5px);
}

.step-box img {
    width: 50px; 
    margin-bottom: 15px;
}

.step-box h3 {
    font-size: 1.5rem;
    color: var(--main-color);
    text-align:center;
    margin-bottom: 20px;

}

.step-content {
   width: 80%; /* justera vid behov */
   margin: 0 auto;
   text-align: left;
}

.list-item {
    display: flex;
    align-items: flex-start; /* Gör att texten linjeras med toppen av ikonen */
    gap: 10px; /* Mellanrum mellan ikon och text */
    margin-bottom: 15px;
}

.list-item img {
    width: 30px; 
    height: auto;
    flex-shrink: 0; /* Gör att ikonen behåller sin storlek */
}

.list-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6; /* Kontrollerar radavståndet så att det linjerar snyggt */
    display: inline-block;
}

/********************************************
STEPS MOBIL
********************************************/
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column; 
        align-items: center;
        width:100%;
    }

    .step-box {
        width: 100%; 
    }
}
/********************************************
    KONTAKTA-KNAPPAR
********************************************/

/* Container för kontaktknappar */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

/* Individuella kontaktknappar */
.contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-button img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.3));
}

/* Text under ikonerna */
.contact-button span {
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    color: var(--main-color);
}

/* Hover-effekter */
.contact-button:hover {
    color: #2a9d8f; /* Ändrar textfärg på hover */
}

.contact-button:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.4));
}

/* Mobilanpassning */
@media (max-width: 768px) {
    .contact-buttons {
        gap: 1rem;
    }

    .contact-button img {
        width: 40px;
        height: 40px;
    }

    .contact-button span {
        font-size: 0.8rem;
    }
}


/********************************************
   FAQ-SEKTION - HUVUDSTRUKTUR
********************************************/
.faq-container {
   padding: 40px 20px;
   background: var(--section-gradient-medium);
   width: 100%;
   box-sizing: border-box;
   position: relative;
   z-index: 1;
   margin-bottom: -1px;
}

.faq-grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 20px;
   width: 100%;
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 20px;
}

.faq-container h2 {
    margin-bottom: 20px;
}
/********************************************
   FAQ-KORT - GRUNDLÄGGANDE STILAR
********************************************/
.faq-card {
   position: relative;
   height: 200px;
   border-radius: 15px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   cursor: pointer;
   perspective: 1000px;
   margin-bottom: 60px; /* Extra luft mellan FAQ och knappar */
}


/********************************************
   FAQ-KORT - FÄRGVARIATIONER
********************************************/
.faq-card:nth-child(4n+1) {
   background: linear-gradient(to left, #f4a261, #f6b88c);
   --card-color: #f4a261;
    
}

.faq-card:nth-child(4n+2) {
   background: linear-gradient(to left, #2a9d8f, #63c6b4);
   --card-color: #2a9d8f;
}

.faq-card:nth-child(4n+3) {
   background: linear-gradient(to left, #e76f51, #f49886);
   --card-color: #e76f51;
}

.faq-card:nth-child(4n+4) {
   background: linear-gradient(to left, #e9c46a, #f3da96);
   --card-color: #e9c46a;
}

/********************************************
   FAQ-KORT - HOVER OCH INTERAKTIONER
********************************************/
.faq-card:hover {
   transform: translateY(-5px) scale(1.03);
   filter: brightness(1.1);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.faq-card.flipped {
   position: fixed;
   top: 45%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 500px;
   height: auto;
   min-height: 320px;
   max-height: 80vh;
   z-index: 1000;
   background: white !important;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.faq-card.flipped .faq-front {
   transform: rotateY(-180deg);
}

.faq-card.flipped .faq-back {
   transform: rotateY(0);
   overflow-y: auto;
}

/********************************************
   FAQ-KORT - FRAM- OCH BAKSIDA
********************************************/
.faq-front,
.faq-back {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 15px;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
   text-align: center;
   padding: 20px;
   box-sizing: border-box;
   backface-visibility: hidden;
}

.faq-front {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    height: 100%;
    color: white;
    padding: 20px;
    backface-visibility: hidden;
}

.faq-front img {
    max-width: 50px;
    height: 50px;
    opacity: 0.9;
    object-fit: contain;
    margin-top: 10px;
    margin-bottom: 10px;
}

.front-audio {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.front-audio .listen-label {
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-top: 5px;
}

.front-audio img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: 0;
}

.front-audio .hover-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px;
    border-radius: 4px;
    font-size: 11px;
    width: 250px;
    z-index: 101;
    text-align: center;
    line-height: 1.4;
    display: none;
}

.front-audio:hover .hover-text {
    display: block;
}

.faq-front p {
    margin: 0;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.4;
}

.faq-back {
   background: white;
   color: #21334f;
   transform: rotateY(180deg);
   padding: 20px 40px;
   overflow-y: hidden;
   height: 100%;
   max-height: 100%;
}

.faq-back::-webkit-scrollbar {
   width: 8px;
}

.faq-back::-webkit-scrollbar-track {
   background: transparent;
}

.faq-back::-webkit-scrollbar-thumb {
   background-color: var(--card-color);
   border-radius: 4px;
}

.faq-back p {
   font-size: 14px;
   line-height: 1.6;
   margin-top: 20px;
   word-wrap: break-word;
}

/********************************************
   FAQ-KORT - OVERLAY
********************************************/
.overlay {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(5px);
   z-index: 90;
   display: none;
}

.overlay.active {
   display: block;
   z-index: 999;
}

/********************************************
   FAQ-KORT - IKONER OCH TEXT
********************************************/
.icons-container {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 20px;
}

.icon-wrapper {
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
}

.icon-wrapper:first-child {
   position: absolute;
   left: 50%;
   top: 50px;
   transform: translateX(-50%);
   z-index: 2;
}

.icon-wrapper:last-child {
   margin-left: auto;
}

.icon-wrapper img {
   width: 40px;
   height: 40px;
   cursor: pointer;
   opacity: 0.9;
}

.listen-label {
   font-size: 12px;
   font-weight: 600;
   margin-top: 5px;
   color: #21334f;
}

.hover-text {
   display: none;
   position: fixed;
   background: rgba(0, 0, 0, 0.8);
   color: white;
   padding: 12px;
   border-radius: 4px;
   font-size: 11px;
   width: 250px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 101;
   text-align: center;
   line-height: 1.4;
}

.icon-wrapper:hover .hover-text {
   display: block;
}

.faq-back p {
   margin-top: 100px;
   text-align: center;
}

/********************************************
   RESPONSIV DESIGN
********************************************/
@media (max-width: 1200px) {
   .faq-grid {
       grid-template-columns: repeat(3, 1fr);
       gap: 20px;
   }
}

@media (max-width: 992px) {
   .faq-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 25px;
   }
}

@media (max-width: 768px) {
   .faq-container {
       padding: 15px 20px 40px;
   }
   
   .faq-card {
       height: 180px;
   }
   
   .faq-card.flipped {
       width: 90%;
       max-width: 500px;
       height: 300px;
   }
}

@media (max-width: 576px) {
   .faq-grid {
       grid-template-columns: 1fr;
       gap: 30px;
       padding: 0 10px;
   }
}

/********************************************
    KNAPPAR NEDERKANT
********************************************/
.button-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Lägger knapparna i botten */
    z-index: 5;
    background: linear-gradient(to bottom, #d4d4d4, #b0b0b0);
    padding: 0; /* Tar bort padding så att det inte blir luft */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    position: relative;
}

.button-left,
.button-right {
    flex: 1; /* Gör knapparna flexibla */
    height: 40px; /* Standardhöjd på desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-decoration: none;
    border-radius: 6px;
    background: linear-gradient(to right, #1a8296, #21334f);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
    margin: 0; /* Tar bort extra mellanrum */
}

/* Pilarna som separata element */
.button-icon {
    display: inline-block;
    font-size: 18px;
    color: white;
    margin: 0 8px;
    background: none;
    box-shadow: none;
    border: none;
    line-height: 1;
}

/* Hover-effekter */
.button-left:hover,
.button-right:hover {
    background: linear-gradient(to right, #21334f, #1a8296);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Aktivt läge */
.button-left:active,
.button-right:active {
    transform: translateY(1px);
}

/********************************************
    KNAPPSTIL FÖR MOBIL
********************************************/
@media (max-width: 768px) {
    .button-container {
        flex-direction: row;
        justify-content: space-between; /* Ger mellanrum i mitten */
        padding: 0; /* Ingen padding på mobil */
    }

    .button-left,
    .button-right {
        width: 49%; /* Knapparna täcker halva bredden var */
        height: 30px; /* Minskar höjden på knappar */
        font-size: 14px;
        margin: 0; /* Tar bort extra mellanrum */
    }
}

/********************************************
    FOOTERN
********************************************/
.footer-container {
    background: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
    width: 100%;
}