/* Static Pages (Privacy Policy, Terms of Use) - RTL Hebrew */

.static-page {
    background-color: #f9f9f9;
    min-height: 100vh;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Typography */
.page-content h1 {
    color: #ff6f61;
    font-size: 2.5rem;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff9a3d;
    font-weight: bold;
}

.page-content h2 {
    color: #333;
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
    padding-right: 15px;
    border-right: 4px solid #ff9a3d;
}

.page-content h3 {
    color: #555;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-content p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content p strong {
    color: #ff6f61;
    font-weight: bold;
}

/* Lists */
.page-content ul {
    margin: 15px 0;
    padding-right: 30px;
}

.page-content ul li {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-right: 10px;
}

.page-content ul li::before {
    content: '•';
    color: #ff9a3d;
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    right: -20px;
}

.page-content ol {
    margin: 15px 0;
    padding-right: 30px;
}

.page-content ol li {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-right: 10px;
}

/* Links */
.page-content a {
    color: #ff6f61;
    text-decoration: none;
    border-bottom: 1px solid #ff9a3d;
    transition: all 0.2s ease;
}

.page-content a:hover {
    color: #ff9a3d;
    border-bottom-color: #ff6f61;
}

/* Email links */
.page-content a[href^="mailto:"] {
    background: linear-gradient(135deg, rgba(255, 154, 61, 0.1), rgba(255, 111, 97, 0.1));
    padding: 4px 8px;
    border-radius: 4px;
    border-bottom: none;
}

.page-content a[href^="mailto:"]:hover {
    background: linear-gradient(135deg, rgba(255, 154, 61, 0.2), rgba(255, 111, 97, 0.2));
}

/* Date info */
.page-content > p:first-of-type {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Footer note (em) */
.page-content em {
    display: block;
    margin-top: 40px;
    padding: 15px 20px;
    background: #f5f5f5;
    border-right: 4px solid #ff9a3d;
    color: #666;
    font-size: 0.95rem;
    border-radius: 4px;
}

/* Highlighted sections */
.page-content p:has(strong:first-child) {
    background: linear-gradient(135deg, rgba(255, 154, 61, 0.05), rgba(255, 111, 97, 0.05));
    padding: 15px 20px;
    border-right: 3px solid #ff9a3d;
    border-radius: 4px;
    margin: 20px 0;
}

/* Contact section */
.page-content h2:last-of-type {
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        padding: 30px 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 0;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .page-content h3 {
        font-size: 1.2rem;
    }

    .page-content p,
    .page-content ul li,
    .page-content ol li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 20px 15px;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }

    .page-content h2 {
        font-size: 1.3rem;
        padding-right: 12px;
    }

    .page-content h3 {
        font-size: 1.1rem;
    }

    .page-content p,
    .page-content ul li,
    .page-content ol li {
        font-size: 0.95rem;
    }

    .page-content ul {
        padding-right: 25px;
    }

    .page-content ol {
        padding-right: 25px;
    }
}

/* Print styles */
@media print {
    .page-content {
        box-shadow: none;
        max-width: 100%;
    }

    .page-content a {
        color: #000;
        border-bottom: 1px solid #000;
    }
}
