/*
* איצאב מתכות - עיצוב דפים משפטיים
* גרסה: 2.0 - bronze/dark design
*/

.legal-content {
    background-color: #fff;
    padding: 5rem 0;
}

.legal-introduction {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 2rem;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    color: var(--dark-color);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: 1.5rem;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    inset-inline-start: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.legal-section p {
    margin-bottom: 1.5rem;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    max-width: var(--prose-max);
}

.legal-section ul {
    margin-bottom: 2rem;
    padding-inline-start: 2rem;
}

.legal-section ul li {
    margin-bottom: 1rem;
    position: relative;
    line-height: var(--leading-normal);
    font-size: var(--text-base);
    list-style: none;
}

.legal-section ul li::before {
    content: '\25CF';
    color: var(--primary-color);
    position: absolute;
    inset-inline-start: -1.5rem;
}

.contact-details {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid var(--light-gray);
}

.contact-details li {
    margin-bottom: 1rem;
    padding-inline-start: 0 !important;
}

.contact-details li::before {
    display: none !important;
}

.contact-details strong {
    color: var(--primary-color);
    min-width: 80px;
    display: inline-block;
}

.contact-details a {
    color: var(--dark-color);
    text-decoration: underline;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #343a40 100%);
    color: var(--light-text);
}

.page-header h1 {
    color: var(--light-text);
    font-family: var(--font-display);
}

.page-header p {
    color: var(--light-gray);
}

@media screen and (max-width: 768px) {
    .legal-content {
        padding: 3rem 0;
    }
}
