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

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.7;
    text-align: center;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #003333, #001a1a);
    padding: 60px 20px;
    color: #00ffcc;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
}

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* AGB-Inhalt */
.agb-content {
    padding: 60px 20px;
}

/* Infobox */
.agb-info {
    background: rgba(0, 255, 204, 0.1);
    border-left: 5px solid #00ffcc;
    padding: 25px;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 255, 204, 0.1);
    text-align: center;
    color: #ccc;
}

/* PDF-Anzeige */
.pdf-container {
    width: 90%;
    max-width: 950px;
    margin: 30px auto;
    border: 2px solid #00ffcc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.pdf-container iframe {
    width: 100%;
    height: 850px;
    background: #000;
}

/* Download-Link */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1.2rem;
    background: #00ffcc;
    color: #121212;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background: #00b3a1;
    transform: translateY(-3px);
}

/* Divider */
.divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, #00ffcc, transparent);
    margin: 50px auto;
    border-radius: 4px;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
    border-top: 3px solid #00ffcc;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left h3 {
    font-size: 1.5rem;
    color: #00ffcc;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1rem;
    margin: 0;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-right ul li a {
    font-size: 1rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right ul li a:hover {
    color: #00ffcc;
}
