#order {
 display:none !important; 
}

.framer-b3w632 {
  
 opacity:1 !important; 
}

:root {
  --primary-brand: #eb0506;
  --primary-hover: #c40e0e;
  --text-dark: #1a202c;
  --text-body: #4a5568;
  --bg-main: #ffffff;
  --bg-accent: #fff5f5;
  --border-light: #edf2f7;
  --shadow-subtle: 0 10px 30px rgba(235, 5, 6, 0.05);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.06);
  --radius-card: 16px;
  --radius-item: 12px;
  --line-height: 1.8;
}

#main-text {
  max-width: 900px;
  margin: 3rem auto;
  padding: 3rem 2.5rem;
  background-color: var(--bg-main);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  box-sizing: border-box;
}

#main-text h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid var(--primary-brand);
  letter-spacing: -0.025em;
}

#main-text h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1rem;
}

#main-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 4px;
  background-color: var(--primary-brand);
  border-radius: 2px;
}

#main-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--primary-brand);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

#main-text p {
  font-size: 1.05rem;
  line-height: var(--line-height);
  color: var(--text-body);
  margin-bottom: 1.5rem;
  text-align: justify;
  text-justify: inter-word;
}

#main-text ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

#main-text ul li {
  position: relative;
  background-color: var(--bg-accent);
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: var(--radius-item);
  border: 1px solid rgba(235, 5, 6, 0.1);
  font-size: 0.975rem;
  line-height: 1.5;
  color: var(--text-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#main-text ul li::before {
  content: "✦";
  position: absolute;
  left: 1.15rem;
  top: 0.9rem;
  color: var(--primary-brand);
  font-size: 1.1rem;
  font-weight: bold;
}

#main-text ul li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-brand);
}

@media (max-width: 768px) {
  #main-text {
    padding: 2rem 1.5rem;
    margin: 1.5rem auto;
    border-radius: 12px;
  }

  #main-text p {
    font-size: 1rem;
    text-align: left;
  }

  #main-text ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #main-text {
    padding: 1.25rem 0.75rem;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  #main-text h1 {
    font-size: 1.6rem;
  }
}

