body {
    position: relative; /* Gör att vi kan använda absolut positionering på pseudo-elementet */
    background: url('info.jpg') no-repeat center center fixed; 
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    padding: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3); /* Halvgenomskinlig vit överlagring */
    z-index: -1; /* Placera pseudo-elementet bakom innehållet */
}

.info-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.info-header {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.info-header h1 {
    margin-bottom: 20px;
}

.info-header p {
    font-weight: bold;
    color: white; /* Default to white, can be changed to black in HTML */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.info-box {
    background-color: #ffffff80;
    padding: 20px;
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.8);
}

.info-box h2 {
    color: #000000;
}

.info-box a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.info-box a:hover {
    text-decoration: underline;
}

.info-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.info-button:hover {
    background-color: #0056b3;
}

.info-form {
    display: flex;
    flex-direction: column;
}

.info-form input[type="text"], .info-form input[type="password"], .info-form input[type="submit"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.info-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.info-form input[type="submit"]:hover {
    background-color: #0056b3;
}

.info-list {
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .info-box {
        min-width: 100%;
    }
}

.feedback-section {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    margin-left: 40px;
    margin-right: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feedback-section blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feedback-section blockquote strong {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.info-ai-body {
    background: url('info.jpg') no-repeat center center fixed; 
    background-size: cover;
}

.info-ai-header {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.info-ai-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.info-ai-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-ai-box {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    flex-basis: calc(33.333% - 20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-ai-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-ai-box h2 {
    color: #007BFF;
    margin-bottom: 15px;
}

.info-ai-cta {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-ai-cta h2 {
    color: #007BFF;
    margin-bottom: 20px;
}

.info-ai-cta ol {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
}

.info-ai-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.info-ai-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .info-ai-box {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .info-ai-box {
        flex-basis: 100%;
    }
}