:root {
    --primary-color: #1a73e8;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --font-family: 'Assistant', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    direction: rtl;
    /* Support for Hebrew */
    text-align: right;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.portal-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #111;
}

.article-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.article-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
    padding-right: 15px;
    border-right: 4px solid var(--primary-color);
}

.article-content h2 {
    margin: 30px 0 15px;
    font-size: 1.75rem;
    color: #222;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-box {
    background: #eef4ff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    text-align: center;
    border: 1px solid #c2dbff;
}

.cta-box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background-color: #1557b0;
}

footer {
    margin-top: 60px;
    padding: 30px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #eee;
}

@media (max-width: 600px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
}