* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
/*   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
 ; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
padding : 0 !important;

}

.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  text-align: center;
border-radius: 20px 20px 0 0;
}

.header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.header p {
  opacity: 0.9;
  font-size: 16px;
}

.progress-container {
  padding: 20px 30px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #6c757d;
}

.progress-bar {
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
  border-radius: 10px;
}

.form-content {
  padding: 40px 30px;
background : white !important;
border-radius: 0 0 20px 20px;
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 24px;
  color: #2d3748;
  margin-bottom: 10px;
}

.step-subtitle {
  color: #718096;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #2d3748;
  font-weight: 500;
}

label.required::after {
  content: " *";
  color: #e53e3e;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group,
.radio-group {
  display: flex;

  flex-direction: column;
  gap: 15px;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.checkbox-item:hover,
.radio-item:hover {
  border-color: #667eea;
  background: #f7fafc;
}

.checkbox-item.selected,
.radio-item.selected {
/*   border-color: #667eea;
  background: #edf2f7; */
}

.checkbox-item input,
.radio-item input {
  margin-right: 12px;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
	background : red !important;
}

.item-content {
  flex: 1;
}

.item-title {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.item-description {
  font-size: 14px;
  color: #718096;
  margin-bottom: 8px;
}

.item-features {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
}

.item-price {
  font-weight: 600;
  color: #667eea;
  margin-top: 5px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.platform-item {
  padding: 10px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.platform-item:hover {
  border-color: #667eea;
}

.platform-item.selected {
  border-color: #667eea;
  background: #edf2f7;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

button {
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  flex: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: #e2e8f0;
  color: #2d3748;
}

.btn-secondary:hover {
  background: #cbd5e0;
}

.helper-link {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

.helper-link:hover {
  text-decoration: underline;
}

.error-message {
  color: #e53e3e;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
}

.modal-header {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2d3748;
}

.modal-close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #718096;
}

.thank-you-page {
  display: none;
  padding: 40px 30px;
  text-align: center;
  background: white;
	border-radius: 0 0 20px 20px !important;
}
form input[type=checkbox] {
	background : white !important;
	border-radius : 50% !important;
}


input[type=checkbox]:checked:before{
	color : none !important;
	padding : 5px !important;
} 
input[type=checkbox]:checked:before {
	line-height: 8px;
    font-family: "Font Awesome 5 Free";
    margin-left: -3px;
}
.thank-you-page.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #48bb78;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
}

.summary-box {
  background: #f7fafc;
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  text-align: left;
}

.summary-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.summary-value {
  color: #4a5568;
}

.next-steps {
  text-align: left;
  margin-top: 30px;
}

.next-step-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.cta-button {
  padding: 15px 30px;
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #667eea;
  color: white;
}

@media (max-width: 768px) {
  .container {
    border-radius: 0;
  }

  .form-content {
    padding: 30px 20px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }
}
