.intentions-page {
  background-color: white;
  min-height: 100%;
  padding: 50px;
  box-shadow: var(--opus-shadow-lg);
  border-radius: var(--opus-border-radius);
  color: #333;
  font-family: "Inter", sans-serif;
}

.intentions-header {
  text-align: center;
  margin-bottom: 40px;
}

.be-thoughtful {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 5px;
}

.page-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-weight: 300;
  letter-spacing: 3px;
}

.intro-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  font-style: italic;
}

.intentions-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.question-text {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #444;
}

.handwriting-lines {
  background-image: linear-gradient(transparent 31px, #e1e9f0 1px);
  background-size: 100% 32px;
}

.handwriting-input {
  width: 100%;
  min-height: 160px;
  background: transparent;
  border: none;
  font-family: var(--form-font-family) !important;
  font-size: 1.2rem;
  line-height: 32px;
  color: #2c3e50;
  resize: vertical;
  padding: 0;
  outline: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 15px;
  padding: 10px;
  background-color: #fffaf0;
  border-radius: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.checkbox-other {
  display: flex;
  align-items: center;
  gap: 5px;
}

.other-input {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-family: var(--form-font-family) !important;
  font-size: 1.1rem;
  width: 100px;
  outline: none;
}

.intentions-middle-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.single-question p {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: #444;
}

.handwriting-input-single {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e1e9f0;
  font-family: var(--form-font-family) !important;
  font-size: 1.2rem;
  color: #2c3e50;
  background-image: linear-gradient(transparent 31px, #e1e9f0 1px);
  background-size: 100% 32px;
  line-height: 32px;
  outline: none;
}

.dream-big-section {
  margin-bottom: 40px;
}

.dream-big-intro {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #444;
}

.dream-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dream-box {
  background-color: #f9fbfd;
  padding: 15px;
  border: 1px solid #e1e9f0;
  border-radius: 8px;
}

.dream-box label {
  display: block;
  font-weight: 600;
  color: #00326b;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.vision-summary {
  background-color: #fff;
  padding: 30px;
  border: 2px solid #f3e5ab;
  border-radius: 12px;
  line-height: 2.2;
}

.vision-summary p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.handwriting-inline {
  border: none;
  border-bottom: 1px solid #d9edfa;
  background: transparent;
  font-family: var(--form-font-family) !important;
  font-size: 1.3rem;
  color: #2c3e50;
  padding: 0 10px;
  outline: none;
}

@media (max-width: 900px) {
  .intentions-top-grid, .dream-grid {
    grid-template-columns: 1fr;
  }
}
