body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    background: url('ovningar/Bilder/foretags-bilder/cloud.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
}

.menu-button {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.h2 {
    font-size: 25px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F7F3F0;
    color: white;
    padding: 0px;
}

.bildknapp button{
    border-width: 0px;
    color: white;
    width: 30px;
    height: 30px;
    background-color: transparent;
    cursor: pointer;
    justify-content: center;
}

.logo {
    width: auto;
    height: 100px; 
    align-items: center; 
    padding-left: 10px;
}

.logo-nav {
    width: 180px;
    height: 100px; 
    align-items: center; 
    padding-left: 25px;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -225px;
    width: 225px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    transition: left 1s ease-in-out;
    z-index: 1000;
}

.side-menu a {
    padding: 15px;
    text-decoration: none;
    color: black;
    display: block;
}
.side-menu a:hover {
    text-decoration: underline;
    transform: scale(1.15);
    transition: transform 0.3s ease
}

.side-menu.show {
    left: 0;
}

.plane {
    background: #F7F3F0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.plane img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.price {
    font-size: 18px;
    font-weight: bold;
}

.produkter {
    padding: 20px;
    margin-top: 120px;
}

.planes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.buy-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: green;
    color: white;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.buy-button:hover {
    background-color: darkgreen;
    transform: scale(1.1);
}

.las-mer-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: green;
    color: white;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.las-mer-button:hover {
    background-color: darkgreen;
    transform: scale(1.1);
}

.kontakt {
    padding: 40px 20px;
    padding-right: 40px;
    background-color: #F7F3F0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    width: 80%;
    max-width: 800px;
}

.kontakt h2 {
    margin-bottom: 20px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

textarea {
    resize: vertical;
}

.submit-btn {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}

.submit-btn:focus {
    outline: none;
}

.confirmation {
    background-color: #F7F3F0;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.confirmation h1 {
    font-size: 2.5rem;
    color: #2c7a7b;
}

.confirmation p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.footer {
    background-color: #F7F3F0;
    color: black;
    padding: 20px 40px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    text-align: left;
    padding: 10px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-center {
    flex: 2;
    padding: 10px;
    text-align: center;
}

.footer-center p {
    margin: 5px 0;
}

.footer-center .footer-links {
    margin-top: 10px;
}

.footer-center .footer-links a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.footer-center .footer-links a:hover {
    text-decoration: underline;
}

.footer-right {
    flex: 1;
    padding: 10px;
    text-align: right;
}

.footer-right p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo, .footer-center, .footer-right {
        flex: none;
        width: 100%;
    }

    .footer-center .footer-links a {
        display: block;
        margin: 5px 0;
    }
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #F7F3F0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: black;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.faq-question {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
    color: black;
}

.faq-question:hover {
    color: #555;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    padding: 0 15px 15px 15px;
    color: black;
}

h1 {
    margin-bottom: 30px;
    color: #333;
  }
  
.jamfor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .produkt-box {
    background-color: #F7F3F0;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
  }
  
  .produkt-box:hover {
    transform: translateY(-5px);
  }
  
  select {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .pris {
    font-weight: bold;
    margin-top: 10px;
    color: #444;
  }
  
  .beskrivning {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
  }
  
  @media (max-width: 768px) {
    .jamfor-container {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
  
    .produkt-box {
      width: 90%;
    }
  
    img {
      width: 100%;
      height: auto;
    }
  }
  

