:root {
    --deep-blue: #102a43;  /* כחול עמוק להגנה */
    --silver: #9fb3c8;      /* גוון עופרת וכסף */
    --gold-accent: #d4af37;
    --white: #ffffff;
    --bg-light: #f0f4f8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Assistant', sans-serif; direction: rtl; color: var(--deep-blue); line-height: 1.7; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.bg-silver { background-color: #e4e7eb; }

header { background: var(--white); border-bottom: 3px solid var(--silver); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 26px; font-weight: 800; color: var(--deep-blue); letter-spacing: 1px; }
nav ul { display: flex; list-style: none; gap: 25px; }
nav a { text-decoration: none; font-weight: 700; color: var(--deep-blue); }

.hero { 
    height: 70vh; background: linear-gradient(rgba(16, 42, 67, 0.85), rgba(16, 42, 67, 0.85)), url('silver-texture.jpg') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.hero h1 { font-size: 45px; margin-bottom: 20px; font-weight: 800; }
.btn-primary { background: var(--silver); color: var(--deep-blue); border: none; padding: 18px 40px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }

.section-title { text-align: center; font-size: 34px; margin-bottom: 50px; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--gold-accent); }

.info-block { text-align: center; max-width: 800px; margin: 0 auto 50px; font-size: 1.2rem; }
.sources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.source-card { background: var(--bg-light); padding: 30px; border-radius: 15px; border-right: 6px solid var(--silver); }
.source-card h4 { margin-bottom: 10px; color: var(--deep-blue); }

.logic-list { list-style: none; margin-top: 20px; }
.logic-list li { background: var(--white); margin-bottom: 10px; padding: 15px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 15px; }
.logic-list li::before { content: '✦'; color: var(--gold-accent); }

.steps-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.step-item { background: var(--white); padding: 40px 25px; border-radius: 20px; text-align: center; position: relative; }
.step-num { width: 40px; height: 40px; background: var(--deep-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 800; }

.form-box { background: var(--white); padding: 50px; border-radius: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 1px solid #eee; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; }
input, textarea { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 10px; font-family: inherit; }

.submit-btn-silver { width: 100%; background: var(--deep-blue); color: white; padding: 18px; border: none; border-radius: 50px; font-size: 1.2rem; font-weight: 800; cursor: pointer; transition: 0.3s; }
.submit-btn-silver:hover { background: #1a4a75; transform: translateY(-3px); }

footer { background: #0b1a29; color: rgba(255,255,255,0.7); padding: 40px 0; text-align: center; }

@media (max-width: 768px) {
    .sources-grid, .form-row { grid-template-columns: 1fr; }
    .hero h1 { font-size: 30px; }
}
/* עיצוב משופר לתחתית האתר */
footer {
    background: #0b1a29;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-link {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--white);
    border-bottom: 1px solid var(--silver);
}

@media (max-width: 768px) {
    .footer-content { padding: 0 20px; }
}