/* Reset und Grundstile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Allgemeine Stile */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #008080, #00bfae);
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Container für Layout */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
header {
    background-color: #fff;
    padding: 30px 0;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

header h1 {
    text-align: center;
    font-size: 2.8em;
    font-family: 'Quicksand', sans-serif;
    color: #006f63;
}

/* Card Layout für Sections */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Section Titles */
h2 {
    font-size: 1.8em;
    color: #006f63;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
}

h3 {
    font-size: 1.4em;
    color: #009688;
    margin-top: 20px;
}

/* Text und Absätze */
p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Textarea Styling */
textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    margin-top: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1.1em;
    background-color: #f4f4f4;
    resize: vertical;
    transition: border-color 0.3s ease;
}

textarea:focus {
    border-color: #00bfae;
    outline: none;
}

/* Video Embeds */
iframe {
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-radius: 10px;
}

footer p {
    font-size: 0.9em;
}
