/* Grundlegendes Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles für Header und Navigation */
header {
    background-color: #333;
    padding: 10px 20px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

#home {
    position: relative;
    height: 200px;
}

/* Main Content */
.raisemoney {
    color:#222;

}

.qversun-name {
    text-align: right;
    margin-left: 210px;
}

.qversun-logo {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid gold; /*davor keine border*/
    border-radius: 5px;
}

.regina-bild {
    width: 100px;
    height: 100px;
    border: 1px solid gold; /*davor keine border*/
    border-radius: 5px;
}


main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
}

h1, h2 {
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Services Section */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid gold; /*davor #ddd*/
    border-radius: 5px;
    text-align: center;
}

.service-item h3 {
    margin-bottom: 10px;
    color: #222;
}

.service-item p {
    font-size: 16px;
}

/*Followmeon  */
.youtube-logo {
    width: 55px;
    height: 40px;
    margin: 18px 13px;
}
/* Kontaktformular */
.contact-logo {
    width: 40px;
    height: 40px;
    margin: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

button {
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

.wellness-osteopathie {
    color:#222;

}

.product {
    text-decoration: underline;
}

.legalbanner {
    color: antiquewhite;
}

/* Footer */
a:link.rscredit,
a:visited.rscredit {
    color: #555;
}

footer {
    background-color: #333;
    color: #555;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .services-container {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}
