* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  font-size: 2.4rem;
  font-weight: bold;
  color: #667eea;
  line-height: 30px;
}
.slogen {
  font-size: 0.8rem;
  font-weight: normal;
  color: #2c3e50;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
  position: relative;
}

.hero-text {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease forwards 0.5s;
}

.hero-image {
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideLeft 1s ease forwards 0.8s;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #fff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Section Styling */
.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #f8f9fa;
}

.section:nth-child(odd) {
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: block;
  margin: 1rem auto;
  border-radius: 2px;
}

/* Intro Section */
.intro-content {
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 4rem; */
  /* align-items: center; */
  /* margin-top: 3rem; */
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.intro-text h3 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.intro-image {
  text-align: center;
}

.intro-image img {
  width: 100%;
  min-width: 330px;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intro-points-container {
  display: flex;
  /* justify-content: space-evenly; */
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.intro-right {
  background: linear-gradient(135deg, #66ea6d 0%, #254f6d 100%);
  margin-left: 7px;
}
.intro-left {
  background: linear-gradient(135deg, #ea6666 0%, #201d4b 100%);
  margin-right: 7px;
}

.intro-right,
.intro-left {
  width: 100%;
  margin-top: 10px;
  border: 5px solid #4d4242;
  border-radius: 15px;
  padding: 10px 30px;
}

.intro-right ul,
.intro-left ul {
  list-style: inside;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-text h3 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.video-container {
  text-align: center;
  margin: 3rem 0;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 1.3rem;
}

.video-placeholder h3 {
  padding-bottom: 10px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: #667eea;
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-question:hover {
  background: #5a6fd8;
}

.faq-answer {
  background: white;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
  padding: 1.5rem;
}

/* Contact Form */
#contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  pointer-events: none;
}

#contact .section-title {
  color: white;
}

.form-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.form-container {
  max-width: 600px;
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 100px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .intro-content {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .intro-points-container {
    flex-direction: column; /* אחד מתחת לשני */
    align-items: center; /* מרכז אופקית */
    text-align: center;
  }

  .intro-right,
  .intro-left {
    width: 100%; /* שיתפסו את כל הרוחב */
    margin-left: unset;
    margin-right: unset;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #ffefd5 0%, #ffedcc 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff12" points="200,0 1000,200 800,1000 0,800"/></svg>');
  pointer-events: none;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    #667eeaa1,
    #cd99f5db,
    #c967bc8a,
    #f3aaaaeb
  );
  z-index: -1;
  border-radius: 20px;
  padding: 3px;
  background-clip: padding-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 4rem;
  color: #667eea;
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-author {
  text-align: center;
  border-top: 2px solid #f8f9fa;
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  /* color: #667eea; */
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  /* color: #6c757d; */
  font-size: 0.95rem;
}

/* Responsive testimonials */
@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    transform: rotate(0deg) !important;
    margin-top: 0 !important;
  }
}

/* Chart Section */
.chart-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.chart-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff15" points="0,200 1000,0 1000,800 0,1000"/></svg>');
  pointer-events: none;
}

.chart-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.chart-intro {
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card.highlight {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: 2px solid #667eea;
}

.stat-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.stat-card.highlight h3 {
  opacity: 1;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #667eea;
  margin: 0;
}

.stat-card.highlight .stat-number {
  color: white;
  font-size: 2rem;
}

.final-amount {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.cta-container {
  /* text-align: center; */
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
