body {
    background-image: url('../bilder/pexels-martinpechy-304664.jpg');
     background-repeat: no-repeat;   
    background-size: cover;         
    background-position: center;    
    background-attachment: fixed;  
    font-family: Arial, sans-serif;
    text-align: center;
}

h2 {
    margin-top: 30px;
    color: #333;
}

.faq-container {
    max-width: 700px;
    margin: 30px auto;
}

.faq-item {
    background-color: white;
    border: 2px solid rgba(83, 184, 234, 0.616);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: rgb(83, 179, 234);
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: rgba(65, 130, 200, 0.966);
}

.faq-answer {
    display: none; 
    padding: 15px;
    text-align: left;
    line-height: 1.5;
}