/* AGB-spezifische Styles */

/* Hero Section */
.agb-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.agb-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.agb-hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* AGB Content */
.agb-content {
    background-color: #fafafa;
    padding: 3rem 2rem 5rem;
}

.agb-container {
    max-width: 900px;
    margin: 0 auto;
}

.agb-section {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.agb-section:last-child {
    margin-bottom: 0;
}

.agb-section h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.75rem;
}

.agb-section h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 2rem 0 1rem 0;
}

.agb-section h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 1.5rem 0 0.75rem 0;
}

.agb-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.agb-section p:last-child {
    margin-bottom: 0;
}

.agb-section ul,
.agb-section ol {
    margin: 1rem 0 1.25rem 1.5rem;
    list-style-position: outside;
}

.agb-section ul {
    list-style-type: disc;
}

.agb-section ol {
    list-style-type: decimal;
}

.agb-section ul li,
.agb-section ol li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.agb-section a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.agb-section a:hover {
    color: var(--color-text-light);
}

.agb-section strong {
    font-weight: 600;
    color: var(--color-text);
}

/* Country-specific Notes */
.country-note {
    background-color: #f8f9fa;
    border-left: 4px solid var(--color-primary);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.country-note h4 {
    margin-top: 0;
    color: var(--color-text);
    font-weight: 600;
}

.country-note p {
    margin-bottom: 0.75rem;
}

.country-note p:last-child {
    margin-bottom: 0;
}

.country-note ol {
    margin: 0.75rem 0 0.75rem 1.5rem;
}

.country-note ol li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .agb-hero {
        padding: 2rem 1rem 2rem;
    }
    
    .agb-hero-content h1 {
        font-size: 2rem;
    }
    
    .agb-hero-subtitle {
        font-size: 1rem;
    }
    
    .agb-content {
        padding: 2rem 1rem 3rem;
    }
    
    .agb-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .agb-section h2 {
        font-size: 1.5rem;
    }
    
    .agb-section h3 {
        font-size: 1.15rem;
    }
    
    .agb-section ul,
    .agb-section ol {
        margin-left: 1rem;
    }
    
    .country-note {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .country-note ol {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .agb-hero {
        padding: 1.5rem 0.75rem 1.5rem;
    }
    
    .agb-hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .agb-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .agb-content {
        padding: 1.5rem 0.75rem 2.5rem;
    }
    
    .agb-section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .agb-section h2 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }
    
    .agb-section h3 {
        font-size: 1.05rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .agb-section h4 {
        font-size: 1rem;
        margin: 1.25rem 0 0.5rem 0;
    }
    
    .agb-section ul,
    .agb-section ol {
        margin-left: 1rem;
    }
    
    .agb-section ul li,
    .agb-section ol li {
        font-size: 0.95rem;
        padding-left: 0.25rem;
    }
    
    .country-note {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .country-note ol {
        margin-left: 1rem;
    }
}


