/* עיצוב כללי */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  direction: rtl;
  background: linear-gradient(to bottom, #e0f7fa, #ffffff);
  background-image: url('https://www.transparenttextures.com/patterns/pw-maze-white.png');
}

/* אזור התוכן */
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  margin-top: 60px;
}

/* כותרת */
h1 {
  color: #007BFF;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
}

/* טקסט תיאור */
.description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}

/* תמונה */
.real-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* אזור הסרטון */
.video-container {
  margin-bottom: 30px;
}

/* כפתור */
.cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 24px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #0056b3;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form label {
  width: 100%;
  max-width: 400px;
  align-self: center;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: right;
}

.contact-form input {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}
.contact-form select,
.contact-form textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}
#thank-you-message {
  display: none;
  text-align: center;
  color: green;
  font-size: 20px;
  margin-top: 20px;
}
