body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}
section {
    padding: 20px 0;
}

header {
    background: #f8f9fa;
    padding: 10px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: #007bff;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 5px 0;
    }
}

nav ul li a {
    text-decoration: none;
    color: #007bff;
}

nav ul li a.active {
    font-weight: bold;
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 20px;
}

.hero img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.cta {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 10px;
}

.cta:hover {
    background-color: #e64a19;
    transform: scale(1.05);
    transition: 0.3s ease;
}

footer {
    background: #f8f9fa;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
.centered-image {
    display: block;
    margin: 20px auto;
    max-width: 80%; /* Anpassa för responsiv design */
    height: auto;
    border-radius: 10px; /* Gör hörnen mjuka om du vill */
}

.testimonials blockquote {
    font-style: italic;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    margin: 20px auto;
    padding: 15px;
    max-width: 600px;
}
.testimonials h2 {
    font-size: 1.8em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
