/* AGB Page Styles */
.agb-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.agb-version {
    text-align: right;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.agb-section {
    margin-bottom: 3rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.agb-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.agb-section h2 i {
    margin-right: 0.75rem;
    color: #3498db;
}

.agb-list {
    counter-reset: item;
    padding-left: 1.5rem;
}

.agb-list > li {
    counter-increment: item;
    margin-bottom: 1rem;
    position: relative;
    list-style-type: none;
}

.agb-list > li:before {
    content: counter(item) ".0" counter(item, lower-alpha);
    position: absolute;
    left: -2.5rem;
    font-weight: bold;
    color: #3498db;
}

.agb-sublist {
    list-style-type: none;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.agb-sublist li {
    position: relative;
    margin-bottom: 0.25rem;
}

.agb-sublist li:before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #3498db;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .agb-section {
        padding: 1rem;
    }
    
    .agb-list > li:before {
        position: static;
        display: inline-block;
        margin-right: 0.5rem;
        margin-left: -1.5rem;
    }
    
    .agb-list, .agb-sublist {
        padding-left: 1rem;
    }
    
    .agb-section h2 {
        font-size: 1.3rem;
    }
    
    .agb-section h2 i {
        display: none;
    }
}
