.renocrew-swiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.rc-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  text-align: center;
}
.rc-slide h2 { margin-bottom: 15px; }
.rc-slide button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: #0073aa;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
}
.rc-slide button:hover { background: #005f8d; }
.rc-slide form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}
.rc-slide input, .rc-slide textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}
.rc-slide input::placeholder, .rc-slide textarea::placeholder {
  font-size: 1em;
  color: #666;
}
/* Modal */
.rc-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  overflow: auto;
}
.rc-modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 15px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.rc-modal-content img {
  max-width: 100%;
  margin: 15px 0;
  border-radius: 10px;
}
.rc-close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}
.rc-close:hover { color: #0073aa; }
