/* Legal documents */
.legal-document {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.document-header {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.document-header h1 {
    color: #333;
    margin-bottom: 0.5rem;
}

.document-version {
    color: #666;
    font-size: 0.9rem;
}

.document-section {
    margin-bottom: 2rem;
}

.document-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.document-paragraph {
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: left;
}

.document-footer {
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	background: transparent;
	text-align: center;
	z-index: 1000;
}


.btn-box {
    display: flex;
    justify-content: space-between; /* Przyciski obok siebie */
    padding: 20px 0;
    gap: 20px;
}

/* Mobile - przyciski po połowie szerokości */
.document-footer .btn-primary,
.document-footer .btn-secondary {
    flex: 1; /* Każdy przycisk zajmuje połowę */
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 0;
	min-width: 125px;
	padding: 3px 0;
}

/* Desktop */
@media (min-width: 800px) {
    .btn-box {
        justify-content: center;
		gap: 25px;
    }
    
    .document-footer .btn-primary,
	.document-footer .btn-secondary {
        flex: none;
        width: auto;
		min-width: 150px;
    }
    
    /* Usuń padding-bottom na desktop */
    body {
        padding-bottom: 0;
    }
}