.kids-quote-box {

    background: linear-gradient(135deg, #fff3e8, #fffaf5);
    border: 2px dashed #f2be8d;
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    gap: 18px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.04);

}

.kids-quote-icon {

    font-size: 42px;
    flex-shrink: 0;

}

.kids-quote-text {

    font-size: 18px;
    line-height: 1.7;
    color: #6b5b53;
    font-weight: 600;

}

.kids-task-wrapper {

    background: #fdf6f1;
    border-radius: 20px;
    padding: 30px;
    /* max-width: 700px; */
    /* margin: auto; */
    border: 2px solid #f3d5b5;

}

.kids-title {

    color: #5b5b5b;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;

}

.kids-label {

    color: #6b6b6b;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;

}

.kids-input {

    border-radius: 12px;
    border: 2px solid #efc48d;
    background: #fffaf5;
    height: 48px;
    box-shadow: none;

}

.kids-input:focus {

    border-color: #e8a96b;
    box-shadow: none;

}

.kids-btn {

    background: #f4b183;
    border: none;
    border-radius: 14px;
    color: white;
    padding: 12px 30px;
    font-weight: bold;


}

.kids-btn:hover {

    background: #ea9c67;
    color: white;

}




.kids-header {

    display: flex;
    align-items: center;

    gap: 25px;

    margin-bottom: 35px;

}

.kids-task-image {

    width: 140px;
    height: auto;

    flex-shrink: 0;

}

.kids-title {

    font-size: 38px;
    font-weight: 700;

    color: #e59a62;

    margin: 0;

    line-height: 1.4;

}


@media (max-width: 768px) {

  .kids-quote-box {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .kids-quote-icon {
    font-size: 34px;
  }

  .kids-quote-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .kids-task-wrapper {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .kids-header {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .kids-task-image {
    width: 90px;
  }

  .kids-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .kids-label {
    font-size: 15px;
  }

  .kids-input {
    height: 46px;
    font-size: 15px;
  }

  textarea.kids-input {
    height: auto;
  }

  .kids-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
  }

  .d-flex.justify-content-end {
    display: block !important;
  }

}

