/* הגדרות בסיס */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #30323e url('/assets/images/background.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Open Sans Hebrew', sans-serif;
  font-size: 16px;
  color: white;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  direction: rtl;
  line-height: 1.6;
}

#wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 40px;
}

aside {
  width: 30%;
}

main {
  width: 70%;
  background: rgba(48, 50, 62, 0.85);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: lighter;
}

h3 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #F87171; /* צבע אדום רך עבור הכותרת של אזהרה רפואית */
  font-weight: lighter;
}

p {
  margin-bottom: 1.5rem;
}

/* תיבת אזהרה רפואית */
.highlight-box {
  background: rgba(248, 113, 113, 0.1);
  padding: 25px;
  border-right: 4px solid #F87171;
  margin: 30px 0;
  border-radius: 12px;
}

.highlight-box h3 {
  margin-top: 0;
  color: #F87171;
  font-weight: bold;
  font-size: 1.6rem;
}

.highlight-box ul {
  margin-right: 25px;
  margin-top: 15px;
  list-style-type: disc;
}

.highlight-box li {
  margin-bottom: 12px;
}

/* כפתור */
.button {
  display: inline-block;
  padding: 1em 2em;
  border: 2px solid #8B5CF6;
  color: #fff;
  background-color: #8B5CF6;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s access;
  margin-top: 30px;
  font-weight: bold;
}

.button:hover {
  background-color: transparent;
  color: #8B5CF6;
}

.disclaimer {
  margin-top: 40px;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.7;
}

#app-preview {
  max-width: 100%;
  border-radius: 20px;
}

@media (max-width: 767px) {
  #wrapper { flex-direction: column; }
  aside { display: none; }
  main { width: 100%; padding: 25px; }
  h2 { font-size: 2.2rem; }
}
