  /* Base styles */
  .campaign-wizard-container * {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  
  .campaign-wizard-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .wizard-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  
  /* Header and progress bar */
  .wizard-header {
    background-color: #f9fafb;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .wizard-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .wizard-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
  }
  
  .step-indicator {
    background-color: #fbcfe8;
    color: #be185d;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
  }
  
  .progress-indicator {
    height: 100%;
    background-color: #ec4899;
    border-radius: 9999px;
    transition: width 0.3s ease;
  }
  
  .step-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
  }
  
  .step-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
  }
  
  .step-label.active {
    color: #ec4899;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 12px;
  }
  
  .step-label.active .step-number {
    background-color: #ec4899;
    color: white;
  }
  
  /* Content area */
  .wizard-content {
    padding: 32px;
  }
  
  .step-title {
    font-size: 18px;
    font-weight: 600;
    color: #ec4899;
    margin-top: 0;
    margin-bottom: 24px;
  }
  
  /* Form elements */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
  }
  
  .form-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
  }
  
  .form-input:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.1);
  }
  
  .input-with-icon {
    position: relative;
  }
  
  .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
  }
  
  .input-with-icon .form-input {
    padding-left: 40px;
  }
  
  .form-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
  }
  
  .form-select:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.1);
  }
  
  .form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
  }
  
  .form-textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.1);
  }
  
  /* Radio cards */
  .radio-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  @media (min-width: 768px) {
    .radio-card-group {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .radio-card {
    position: relative;
  }
  
  .radio-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .radio-card-label {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .radio-card input:checked + .radio-card-label {
    border-color: #ec4899;
    background-color: #fdf2f8;
  }
  
  .radio-card-label:hover {
    border-color: #fbcfe8;
  }
  
  .radio-card-icon {
    margin-right: 16px;
    margin-top: 2px;
    background-color: #fce7f3;
    padding: 8px;
    border-radius: 9999px;
    color: #ec4899;
  }
  
  .radio-card-content {
    flex: 1;
  }
  
  .radio-card-title {
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
  }
  
  .radio-card-description {
    font-size: 14px;
    color: #6b7280;
  }
  
  /* Checkbox styles */
  .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  @media (min-width: 768px) {
    .checkbox-group {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  .checkbox-item {
    display: flex;
    align-items: center;
  }
  
  .checkbox-input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
  }
  
  .checkbox-input:checked {
    background-color: #ec4899;
    border-color: #ec4899;
  }
  
  .checkbox-input:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .checkbox-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.1);
  }
  
  .checkbox-label {
    font-size: 14px;
    cursor: pointer;
  }
  
  /* Slider styles */
  .slider-container {
    padding: 16px 0;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    margin: 16px 0;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ec4899;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ec4899;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6b7280;
  }
  
  /* Style cards */
  .style-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  @media (min-width: 640px) {
    .style-card-group {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .style-card {
    position: relative;
  }
  
  .style-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .style-card-label {
    display: block;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .style-card input:checked + .style-card-label {
    border-color: #ec4899;
  }
  
  .style-card-label:hover {
    border-color: #fbcfe8;
  }
  
  .style-card-image {
    aspect-ratio: 3/2;
    background-color: #f3f4f6;
    position: relative;
  }
  
  .style-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .style-card-title {
    padding: 12px;
    text-align: center;
    font-weight: 500;
    color: #374151;
  }
  
  /* File upload */
  .file-upload {
    padding: 16px;
    border: 2px dashed #e5e7eb;
    border-radius: 8px;
    background-color: #f9fafb;
    margin-bottom: 16px;
  }
  
  .file-upload-input {
    display: block;
    width: 100%;
    padding: 8px 0;
    cursor: pointer;
  }
  
  .file-upload-help {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
  }
  
  .file-list {
    margin-top: 12px;
  }
  
  .file-list-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  
  .file-list-items {
    font-size: 12px;
    color: #6b7280;
    list-style: none;
    padding-left: 0;
    margin: 4px 0 0 0;
  }
  
  .file-list-items li {
    margin-bottom: 4px;
  }
  
  /* Summary card */
  .summary-card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
  }
  
  .summary-content {
    padding: 24px;
  }
  
  .summary-section {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .summary-icon {
    color: #ec4899;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .summary-details {
    flex: 1;
  }
  
  .summary-heading {
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #374151;
  }
  
  .summary-text {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0;
  }
  
  .summary-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 16px 0;
  }
  
  .location-tag {
    display: inline-flex;
    align-items: center;
    background-color: #fce7f3;
    color: #9d174d;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 9999px;
    margin-right: 4px;
    margin-bottom: 4px;
  }
  
  .location-tag-icon {
    margin-right: 4px;
  }
  
  /* Success message */
  .success-message {
    background-color: #ecfdf5;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    padding: 16px;
  }
  
  .success-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .success-icon {
    background-color: #a7f3d0;
    color: #047857;
    padding: 4px;
    border-radius: 9999px;
  }
  
  .success-title {
    font-weight: 500;
    color: #065f46;
    margin: 0;
  }
  
  .success-text {
    font-size: 14px;
    color: #047857;
    margin: 0;
  }
  
  /* Navigation */
  .wizard-navigation {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .btn-outline {
    background-color: white;
    border: 1px solid #d1d5db;
    color: #374151;
  }
  
  .btn-outline:hover:not(:disabled) {
    border-color: #9ca3af;
    background-color: #f9fafb;
  }
  
  .btn-primary {
    background-color: #ec4899;
    border: 1px solid #ec4899;
    color: white;
  }
  
  .btn-primary:hover:not(:disabled) {
    background-color: #db2777;
    border-color: #db2777;
  }
  
  .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  /* Hide steps that aren't active */
  .wizard-step {
    display: none;
  }
  
  .wizard-step.active {
    display: block;
  }
  
  /* Thank you message */
  .thank-you-container {
    text-align: center;
    padding: 40px 20px;
  }
  
  .thank-you-icon {
    width: 64px;
    height: 64px;
    background-color: #fce7f3;
    color: #ec4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
  }
  
  .thank-you-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
  }
  
  .thank-you-message {
    font-size: 16px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto 32px;
  }
  
  .thank-you-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ec4899;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
  }
  
  .thank-you-btn:hover {
    background-color: #db2777;
  }
  
  /* Responsive adjustments */
  @media (max-width: 640px) {
    .wizard-header, .wizard-content, .wizard-navigation {
      padding: 16px;
    }
    
    .step-labels {
      display: none;
    }
    
    .btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }
