:root {
    --primary-color: #0072C6;
    --primary-dark: #005ea3;
    --secondary-color: #27ae60;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
	--info-color: #3498db;					  
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    order: 2; /* הפוך את הסדר כדי שהלוגו יהיה בצד שמאל */
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

nav {
    order: 1; /* הפוך את הסדר כדי שהניווט יהיה בצד ימין */
    flex-grow: 1;
    font-size: 16px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-start;
}

nav ul li {
    margin-left: 25px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #f0f0f0;
}

.page-header {
    background: var(--primary-color);
					   
											 
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
						
					 
				 
					
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.breadcrumb {
    background-color: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
}

.breadcrumb ul li {
																																							   
				  
				  
						
					   
				 
					   
    margin-left: 0.5rem;
}

.breadcrumb ul li:after {
    content: '/';
    margin-right: 0.5rem;
}

.breadcrumb ul li:last-child:after {
    content: '';
    margin-right: 0;
		   
			
				
				 
								   
}

.breadcrumb ul li a {
    color: var(--primary-color);
    text-decoration: none;
				
}

.breadcrumb ul li.active {
    color: #666;
						
}

.guide-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px; /* הגדלת הרוחב המקסימלי של כל הלייאאוט */
    margin-left: auto;
    margin-right: auto;
}

.guide-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    overflow-y: auto;
    padding-left: 1rem;
    border-left: 5px solid #ddd;
    margin-right: 2rem; 
}

.guide-content {
    flex-grow: 1;
    min-width: 0; /* מאפשר לאלמנט להתכווץ מתחת לרוחב המינימלי שלו */
    max-width: calc(100% - 250px); /* מגביל את הרוחב כדי שישאר מקום לסיידבר */
}

.table-of-contents {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.toc-list li a:hover {
    color: var(--primary-color);
						
}

.toc-list li.active a {
    color: var(--primary-color);
    font-weight: bold;
					 
				   
}

.toc-list ul {
    list-style: none;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.toc-list ul li {
    margin-bottom: 0.25rem;
											  
						
				  
												
					   
}

.toc-list ul li a {
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: none;
}

.guide-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.guide-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.guide-section h3 {
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
}

.guide-section h4 {
    color: #444;
    margin: 1.2rem 0 0.8rem;
}

.guide-section p {
    margin-bottom: 1rem;
}

.guide-section ul, .guide-section ol {
    margin-bottom: 1rem;
    margin-right: 1.5rem;
}

.guide-section li {
    margin-bottom: 0.5rem;
										 
}

.guide-section img {
    max-width: 100%;
    border-radius: 5px;
    margin: 1rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.guide-section code {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

.guide-section pre {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.guide-section pre code {
    padding: 0;
}

.note {
    background-color: #e8f4fd;
    border-right: 4px solid var(--info-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.note:before {
    content: 'הערה: ';
    font-weight: bold;
    color: var(--info-color);
}

.warning {
    background-color: #fff8e8;
    border-right: 4px solid var(--warning-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.warning:before {
    content: 'אזהרה: ';
    font-weight: bold;
    color: var(--warning-color);
}

.tip {
    background-color: #e8f8e8;
    border-right: 4px solid var(--secondary-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.tip:before {
    content: 'טיפ: ';
    font-weight: bold;
    color: var(--secondary-color);
}

.keyboard-shortcut {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0.2rem 0.4rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    margin: 0 0.2rem;
}

.step-by-step {
    counter-reset: step;
    list-style-type: none;
    margin-right: 0 !important;
}

.step-by-step li {
    position: relative;
    padding-right: 2.5rem;
    margin-bottom: 1.5rem;
}

.step-by-step li:before {
    counter-increment: step;
    content: counter(step);
								
				 
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
}

.screenshot {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 1rem 0;
}

.screenshot img {
    margin: 0;
    display: block;
}

.caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

table th {
    background-color: var(--primary-color);
    color: white;
    text-align: right;
    padding: 0.75rem;
}

table td {
    padding: 0.75rem;
    border-bottom: 1px solid #ddd;
}

table tr:nth-child(even) {
    background-color: #f8f9fa;
				
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin: 0.5rem 0;
}

.btn:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #219653;
}

.btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
					 
}

.hero {
    background: url('https://images.unsplash.com/photo-1556155092-490a1ba16284?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}		

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
			  
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    padding: 5rem 0;
    background-color: white;
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.pagination a {
    display: flex;
    align-items: center;					  
    color: var(--primary-color);
    text-decoration: none;
					   
    transition: color 0.3s;
}

.pagination a:hover {					
    color: var(--primary-dark);
}	

.pagination a i {	
    color: var(--primary-dark);
}

.pagination a i {		
    margin: 0 0.5rem;
}
	
	
.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-download i {
    margin-left: 10px;
    font-size: 1.2em;
					  
}

.downloads-section {
    padding: 4rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
					  
    color: var(--primary-color);
    margin-bottom: 1rem;
						   
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.download-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.download-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    width: 320px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.download-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.download-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.download-details {
    margin: 1rem 0 2rem;
    font-size: 0.9rem;
    color: #666;
}

.system-requirements {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-card {
    background-color: white;
				  
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.requirement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.requirement-card h3 i {
				   
    margin-left: 0.5rem;
					  
}

.requirement-card ul {
    list-style: none;
}

.requirement-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 1.5rem;
}

.requirement-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    right: 0;
}

.installation-guide {
    padding: 4rem 0;
    background-color: white;
}

.guide-steps {
    margin-top: 2rem;
}

.step-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}	

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonials {
    padding: 5rem 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;	
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 10px;		
}

.pricing {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));	
    gap: 2rem;			
    margin-top: 3rem;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);							   
}		

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;							
}

.pricing-card.featured::before {
    content: 'המומלץ';
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header {
    margin-bottom: 2rem;									
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-description {				  
    color: #666;							
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;							   
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;			
}

.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;					 
}

.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;										  
}

.form-group {
    margin-bottom: 1.5rem;						
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;					  
}

.contact-info {
    padding: 2rem;		 
}

.contact-info h3 {
    margin-bottom: 1.5rem;							
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {				
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info ul li i {				   
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-left: 1rem;
    width: 20px;
}

.faq {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}


.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;								  
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 1rem;
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-details p {
    font-size: 0.9rem;
    color: #666;
}

.cta {													 
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;			  
    text-align: center;							
}

.cta h2 {				   
    font-size: 2.5rem;										
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
						
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
						 
}

.social-icons {
    display: flex;
    margin-top: 1rem;							  							   
}

.social-icons a {							   
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    color: white;
    text-decoration: none;
    margin-left: 0.5rem;
    transition: background-color 0.3s;						 
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.how-it-works {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.faq {
    padding: 4rem 0;
    background-color: var(--light-color);
			  
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #666;
}

.faq-item.active .faq-answer {
    display: block;
}

.callout {
    background-color: #e8f4fd;
    border-right: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.callout-title {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.callout-title i {
    margin-left: 0.5rem;
}

.callout p:last-child {
    margin-bottom: 0;
}

.support {
    text-align: center;
    padding: 3rem 0;
    background-color: white;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.support-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
}

.support-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-option h3 {
					  
    margin-bottom: 0.5rem;
					 
					  
					   
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
					 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
						   
				 
						  
						
    transition: opacity 0.3s;
    z-index: 900;
}

.scroll-to-top.visible {
    opacity: 1;
}

/* תוספות CSS לדף תנאי השימוש */
.terms-section {
    padding: 4rem 0;
    background-color: white;
}

.terms-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.terms-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.terms-intro p:last-child {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.terms-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terms-section ul {
    margin-bottom: 1rem;
    margin-right: 1.5rem;
}

.terms-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-contact {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.terms-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-contact p {
    margin-bottom: 0.5rem;
}

.terms-contact i {
    color: var(--primary-color);
    margin-left: 0.5rem;
    width: 20px;
}

.terms-agreement {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    font-weight: bold;
}

/* תוספות CSS לדף הסכם רישיון */
.license-section {
    padding: 4rem 0;
    background-color: white;
}

.license-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.license-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.license-intro p:last-child {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.license-section-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.license-section-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.license-subsection {
    padding-right: 1rem;
    margin-bottom: 1rem;
}

.license-subsection h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.license-subsection p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.license-subsection ul {
    margin-bottom: 1rem;
    margin-right: 1.5rem;
    list-style-type: disc;
}

.license-subsection ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.license-disclaimer {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}

.license-disclaimer p {
    margin-bottom: 0.5rem;
}

.license-disclaimer i {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.license-confirmation {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    font-weight: bold;
}

/* תוספות CSS לדף מדיניות פרטיות */
.privacy-section {
    padding: 4rem 0;
    background-color: white;
}

.privacy-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.privacy-intro p:last-child {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.privacy-section-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.privacy-section-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-section-item h4 {
    color: var(--primary-dark);
    margin: 1.2rem 0 0.7rem;
    font-size: 1.1rem;
}

.privacy-section-item p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-section-item ul {
    margin-bottom: 1rem;
    margin-right: 1.5rem;
}

.privacy-section-item ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-highlight {
    background-color: #f8f9fa;
    border-right: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
}

.privacy-highlight i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-left: 1rem;
    margin-top: 0.2rem;
}

.privacy-highlight p {
    margin-bottom: 0;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    margin-left: 0.5rem;
}

.privacy-acceptance {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    font-weight: bold;
}

/* תוספות CSS לדף הצהרת נגישות */
.accessibility-section {
    padding: 4rem 0;
    background-color: white;
}

.accessibility-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.accessibility-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.accessibility-section-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.accessibility-section-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.accessibility-section-item h4 {
    color: var(--primary-dark);
    margin: 1.2rem 0 0.7rem;
    font-size: 1.1rem;
}

.accessibility-section-item p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.accessibility-section-item ul {
    margin-bottom: 1rem;
    margin-right: 1.5rem;
}

.accessibility-section-item ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.accessibility-resources {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.accessibility-resources h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.accessibility-resources ul {
    margin-right: 1.5rem;
}

.accessibility-resources ul li {
    margin-bottom: 0.5rem;
}

.accessibility-resources a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.accessibility-resources a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

/* תפריט ניווט ברירת מחדל */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}


/* עיצוב עבור אובר-ליי טופס רכישה */
.purchase-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.purchase-overlay.active {
    opacity: 1;
    visibility: visible;
}

.purchase-form-container {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.purchase-overlay.active .purchase-form-container {
    transform: translateY(0);
}

.purchase-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.purchase-form-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.purchase-form-header p {
    color: #666;
    font-size: 1rem;
}

.close-purchase-form {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.close-purchase-form:hover {
    color: var(--danger-color);
}

.purchase-details {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.purchase-details h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.purchase-details .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.purchase-details ul {
    list-style: none;
    margin: 0.5rem 0;
}

.purchase-details ul li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-right: 1.5rem;
}

.purchase-details ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    right: 0;
}

.purchase-form {
    margin-top: 1rem;
}

.purchase-form .form-group {
    margin-bottom: 1rem;
}

.purchase-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.purchase-form .form-group input,
.purchase-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.purchase-form .form-group textarea {
    height: 100px;
}

.purchase-form-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.purchase-notice {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

/* עיצוב כפתורי רכישה */
.purchase-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


@media (max-width: 992px) {
   /* === שיפורי לייאאוט כללי === */
    
    /* שינוי המבנה הכללי מ-flex ל-block בתצוגת מובייל */
    .guide-layout {
        display: block;
        padding: 0;
        max-width: 100%;
    }
    
    /* התאמת הגודל של ה-container */
    .container {
        width: 100%;
        padding: 0 15px;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* הקטנת רווחים בכותרת העליונה */
    .page-header {
        padding: 6rem 0 2rem;
    }
    
    .page-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* === שיפורים לסרגל הצד (תוכן עניינים) === */
    
    /* הפיכת סרגל הצד לסטטי ולרוחב מלא */
    .guide-sidebar {
        width: 100%;
        position: static;
        height: auto;
        border-left: none;
        border-bottom: 1px solid #ddd;
        padding: 1rem 0;
        margin: 0 0 1.5rem 0;
        overflow: visible;
    }
    
    /* עיצוב תיבת תוכן העניינים */
    .table-of-contents {
        background-color: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 1rem;
    }
    
    /* הוספת אייקון לכותרת תוכן העניינים */
    .table-of-contents h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        border-bottom: none;
    }
    
    .table-of-contents h3:after {
        content: "\f107"; /* חץ למטה של Font Awesome */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        transition: transform 0.3s;
    }
    
    .table-of-contents.expanded h3:after {
        transform: rotate(180deg);
    }
    
    /* הסתרת הרשימה כברירת מחדל */
    .toc-list {
        display: none;
        padding-right: 0;
        margin-top: 0.5rem;
    }
    
    .toc-list-visible {
        display: block;
    }
    
    /* הסתרת תת-רשימות */
    .toc-list ul {
        display: none;
    }
    
    /* עיצוב פריטי הרשימה */
    .toc-list li {
        margin-bottom: 0;
    }
    
    .toc-list li a {
        padding: 0.5rem 0;
        font-size: 0.95rem;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    /* === שיפורים לתוכן הראשי === */
    
    /* התאמת רוחב התוכן */
    .guide-content {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    /* הקטנת הריפוד בסעיפים */
    .guide-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    /* התאמת גדלי כותרות */
    .guide-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .guide-section h3 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.7rem;
    }
    
    /* שיפור רוחב הפסקאות והטקסט */
    .guide-section p,
    .guide-section li,
    .guide-section ul,
    .guide-section ol {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        line-height: 1.5;
        font-size: 1rem;
    }
    
    /* התאמת הרשימות */
    .guide-section ul, 
    .guide-section ol {
        padding-right: 1.2rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* === שיפורים לאלמנטים מיוחדים === */
    
    /* התאמת תבליטים */
    .step-by-step li {
        padding-right: 2rem;
        margin-bottom: 1rem;
    }
    
    .step-by-step li:before {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 0.9rem;
    }
    
    /* עיצוב תיבות מידע */
    .note, .warning, .tip {
        padding: 0.8rem;
        margin: 1rem 0;
        font-size: 0.9rem;
        border-radius: 5px;
    }
    
    /* התאמת תמונות */
    .screenshot {
        padding: 3px;
        margin: 0.8rem 0;
    }
    
    .screenshot img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .caption {
        margin: 0.5rem 0 1rem;
        font-size: 0.85rem;
    }
    
    /* שיפור טבלאות במובייל */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
    
    /* קישור חזרה לראש העמוד */
    .pagination {
        text-align: center;
        margin-top: 2rem;
    }
}


						
							

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        position: relative;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .logo {
        margin-bottom: 1rem;
        order: 1;
    }
    .page-header h2 {
        font-size: 2rem;
    }
    .section-title h2 {
        font-size: 2rem;

    }
    .faq-grid {
        grid-template-columns: 1fr;

    }
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    .download-card {
        width: 100%;
        max-width: 320px;
    }

    /* כפתור סגירה בתוך התפריט */
    .close-menu {
        position: absolute;
        top: 20px;
        left: 20px;
        color: white;
        font-size: 1.2rem;
        background: none;
        border: none;
        cursor: pointer;
    }
    
      /* כפתור ההמבורגר */
      .hamburger-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1010;
      }
      
      /* עיצוב האייקון של הכפתור */
      .hamburger-menu i {
        font-size: 24px;
      }
      
      /* תפריט הניווט במובייל */
      #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;         /* מתחיל מחוץ למסך */
        width: 80%;           /* רוחב התפריט */
        max-width: 300px;     /* רוחב מקסימלי */
        height: 100vh;        /* גובה מלא */
        background: linear-gradient(135deg, rgba(44, 130, 201, 0.95), rgba(0, 94, 163, 0.95)); /* רקע עם שקיפות */
        display: flex;
        flex-direction: column;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding-top: 100px;    /* הגדלת מרווח מלמעלה לכפתור הסגירה */
        overflow-y: auto;     /* אפשר לגלול אם יש הרבה פריטים */
      }
      
      /* כשהתפריט פתוח */
      #nav-menu.open {
        right: 0;
      }
      
      /* רקע מעומעם כשהתפריט פתוח */
      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 990;
        display: none;
      }
      
      .overlay.active {
        display: block;
      }
      
      /* עיצוב הרשימה בתפריט */
      #nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
      }
      
      /* עיצוב כל פריט בתפריט */
      #nav-menu ul li {
        margin: 0;
        width: 100%;
      }
      
      /* עיצוב הקישורים בתפריט */
      #nav-menu ul li a {
        display: block;
        padding: 16px 25px;
        text-align: right;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background 0.2s;
        font-size: 18px;
        background-color: rgba(255, 255, 255, 0.1);
        margin: 5px 0;
      }
      
      /* אפקט מעבר על קישור */
      #nav-menu ul li a:hover, 
      #nav-menu ul li a:active {
        background-color: rgba(255, 255, 255, 0.15);
        padding-right: 30px; /* זז קצת ימינה כשעוברים עליו */
      }
      
      /* הקישור האחרון ללא קו תחתון */
      #nav-menu ul li:last-child a {
        border-bottom: none;
      }
      
      /* אפקט הדגשה לקישור הפעיל */
      #nav-menu ul li a.active {
        background-color: rgba(255, 255, 255, 0.2);
        font-weight: bold;
      }
}
        
@media (max-width: 768px) {
    /* מסתיר את הקו האנכי במובייל */
    .timeline::after {
        display: none !important;
    }
    
    /* מגדיר מחדש את המיכל כרשת במקום ציר זמן */
    .timeline {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
    }
    
    /* הופך את כל פריטי ה-timeline לקוביות - כולל עוקף הגדרות חזקות */
    .timeline-item, 
    .timeline-item.right,
    .timeline .timeline-item,
    .timeline .timeline-item.right {
        width: 100% !important;
        right: 0 !important;
        left: auto !important;
        padding: 0 !important;
        margin: 0 0 20px 0 !important;
        position: relative !important;
    }
    
    /* מעצב את הקוביות כך שיראו כמו קוביות היתרונות */
    .timeline-content {
        padding-top: 20px !important; /* מקטין את הריפוד העליון */
    }
    
    .timeline-content:hover {
        transform: translateY(-5px) !important;
    }
    
    /* עיצוב מספרים בולטים */
    .timeline-content h3 {
        position: relative !important;
        padding-top: 0 !important; /* מבטל את הריפוד העליון שהיה נחוץ לעיגולים */
        margin-top: 0 !important;
        width: 100% !important;
        text-align: center !important;
        color: var(--accent-color, #3498db) !important; /* צובע את הכותרת בצבע מודגש */
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
        border-bottom: 2px solid var(--accent-color, #3498db) !important; /* קו הפרדה יפה תחת הכותרת */
        padding-bottom: 10px !important;
    }
    
    .timeline-content h3::before {
        display: none !important;
    }
    
    /* פסקאות טקסט במרכז */
    .timeline-content p {
        text-align: center !important;
        margin: 15px 0 !important;
        width: 100% !important;
    }
    
    /* כפתורים בתחתית הקובייה */
    .timeline-content .text-center {
        margin-top: auto !important;
        padding-top: 15px !important;
        width: 100% !important;
    }

    .timeline-content .btn {
        margin-top: 10px !important;
    }
    
    /* מבטל הגדרות של אפטר שעלולות להפריע */
    .timeline-item::after,
    .timeline-item.right::after {
        display: none !important;
    }

    .purchase-form-container {
        padding: 1.5rem;
        width: 95%;
    }
}