
.tyshara-guidances-block {
  background: #fffaf6;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid #f1e6e1;
  width: 80vw;
}
.guidances-title {
  font-family: 'Satisfy', cursive;
  font-size: 2rem;
  color: #73504f;
  margin-bottom: 0.5rem;
}
.guidances-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #7e9f96;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.open-guidances-modal {
  background: #e5d4ce;
  color: #3f2d2d;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-family: 'Montserrat';
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.open-guidances-modal:hover {
  background: #dfc3ba;
}
.guidances-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.guidances-modal {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.close-guidances-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

