
/*videos style*/
.prayer-videos {
  margin: 4rem auto;
  max-width: 1100px;
  text-align: center;
}

.prayer-videos h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-item video {
  width: 100%;
  max-height: 520px;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/*Form prayer request*/
.prayer-request-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.prayer-request-form h2 {
  text-align: center;
  margin-bottom: 10px;
}

.prayer-request-form p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.prayer-form .form-group {
  margin-bottom: 18px;
}

.prayer-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.prayer-form textarea {
  resize: vertical;
}

.checkbox-group label {
  font-size: 13px;
  line-height: 1.4;
}

.checkbox-group input {
  margin-right: 8px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #333;
}

/*success message*/

.prayer-success {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  text-align: center;
  background: #f8f8f8;
  border-radius: 12px;
}

.prayer-success h3 {
  margin-bottom: 10px;
}
