.ppq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ppq-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #2e6060;
  color: white;
  border-radius: 8px;
}

.ppq-header h2 {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.ppq-instructions {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.ppq-question {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #dfe8d3;
}

.ppq-question h4 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: #2d3748;
  line-height: 1.5;
}

.ppq-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ppq-options label {
  display: flex;
  align-items: center;
  padding: 12px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ppq-options label:hover {
  border-color: #dfe8d3;
  background: #f7fafc;
}

.ppq-options input[type="radio"] {
  margin-right: 10px;
  accent-color: #dfe8d3;
}

.ppq-options input[type="radio"]:checked + span {
  font-weight: 500;
  color: #2e6060;
}

.ppq-options label:has(input:checked) {
  border-color: #dfe8d3;
  background: #fff;
}

.ppq-submit {
  text-align: center;
  margin-top: 30px;
}

.ppq-btn {
  background: #2e6060;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ppq-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.ppq-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ppq-result {
  margin-top: 30px;
  padding: 30px;
  background: #2e6060;
  color: white;
  border-radius: 12px;
  text-align: center;
}

.ppq-result-content h3 {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 700;
  color:white;
}

.ppq-result-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.ppq-result-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 20px 0;
  text-align: left;
}

.ppq-score {
  margin-top: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 18px;
}

.ppq-loading {
  text-align: center;
  padding: 20px;
}

.ppq-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #dfe8d3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ppq-container {
    margin: 10px;
    padding: 15px;
  }

  .ppq-header h2 {
    font-size: 20px;
  }

  .ppq-question {
    padding: 15px;
  }

  .ppq-question h4 {
    font-size: 15px;
  }

  .ppq-options label {
    padding: 10px;
    font-size: 14px;
  }

  .ppq-result-content h3 {
    font-size: 24px;
  }

  .ppq-result-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .ppq-options {
    gap: 8px;
  }
}


.ppq-options label {
    padding: 8px;
    font-size: 13px;
}

.ppq-btn {
    padding: 12px 30px;
    font-size: 15px;
}
	
.ppq-email-field {
  margin-top: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ppq-email-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
  color: #333!important;
}

.ppq-email-field input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  color: #333;
}

.ppq-email-field input[type="email"]:focus {
  outline: none;
  border-color: #6666ff;
  box-shadow: 0 0 5px rgba(102, 102, 255, 0.4);
}

.ppq-email-note {
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.ppq-email-field input[type="email"]::placeholder {
  color: #999;
}
