:root {
  --violett: #681088;
  --gold: #CEAF94;
  --senf: #E1A100;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--senf);
    padding-bottom: 2.4rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 24px 4rem 24px;
    width: 100%;
}

.header {
    margin-bottom: 2rem;
    text-align: center;
}

.header.card {
    background: var(--violett);
    border: 1px solid var(--violett);
    color: white;
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.header:not(.card) h1 {
    color: var(--violett);
}

.header .lead {
    color: white;
}

.lead {
    font-size: 1.125rem;
    color: #666;
}

.card {
    background: white;
    border: 1px solid var(--violett);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px rgba(104, 16, 136, 0.08);
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--violett);
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.section {
    margin-bottom: 2rem;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.target-grid .card {
    margin-bottom: 0;
}

.target-grid h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--violett);
    margin-bottom: 1rem;
}

.cta-card {
    background: var(--violett);
    color: white;
    border: 1px solid var(--violett);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .section-title {
    color: white;
}

.cta-card p {
    color: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--violett);
}

.text-content {
    color: #333;
    line-height: 1.6;
}

a {
    color: var(--violett);
    text-decoration: none;
}

a:hover {
    color: var(--senf);
}

h2 {
    color: var(--violett);
}

.bullet-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.bullet-list li {
    padding: 0.5rem 0;
}

dl {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0.75rem 1rem;
}

dt {
    font-weight: 600;
    color: #555;
}

dd {
    color: #333;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

ul li:last-child {
    border-bottom: none;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.media-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.media-item img {
    width: 100%;
    height: auto;
    display: block;
}

.media-item.hero {
    grid-column: 1 / -1;
}

.media-item.hero img {
    max-height: 500px;
    object-fit: cover;
}

.media-links {
    margin-top: 1rem;
}

.media-links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.media-links a:hover {
    background: #0052a3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-category {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.feature-category h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
}

.feature-category ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.feature-category ul li {
    padding: 0.25rem 0;
    border-bottom: none;
}

.footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
    text-align: center;
    font-weight: bold;
}

.footer nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer nav a {
    color: var(--violett);
    text-decoration: none;
}

.footer nav a:hover {
    color: var(--senf);
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 16px;
    }
    
    dl {
        grid-template-columns: 1fr;
    }
    
    dt {
        margin-top: 0.5rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .footer nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}

