.lead-magnet-wrapper {
  width: 100%;
  padding: 40px 20px;
}

.lead-magnet-container {
  background: #f5f5f7;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 1.8rem;
  padding: 40px;
}

/* Form Layout - Image + Form */
.lead-form-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  align-items: start;
}

.lead-form-image {
  position: sticky;
  top: 40px;
}

.lead-form-image img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lead-form-content {
  min-width: 0;
}

/* Progress Indicator */
.lead-progress-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  padding: 0 20px;
}

.lead-progress-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: #e5e5ea;
  z-index: 0;
}

.lead-progress-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e5e5ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #86868b;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.lead-progress-step.active {
  background: #3c0fab;
  color: white;
  box-shadow: 0 4px 12px rgba(60, 15, 171, 0.3);
  transform: scale(1.1);
}

.lead-progress-step.completed {
  background: #34c759;
  color: white;
}

.lead-progress-step.completed::after {
  content: "✓";
  position: absolute;
}

/* Step Container */
.lead-step-container {
  animation: fadeIn 0.4s ease;
}

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

/* Banner Promocyjny */
.promo-banner {
  background: linear-gradient(135deg, #3c0fab 0%, #5a1fd6 100%);
  border-radius: 1.2rem;
  padding: 32px 24px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(60, 15, 171, 0.2);
  animation: fadeInDown 0.6s ease-out;
}

.promo-content {
  color: white;
}

.promo-counter {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}

.promo-number {
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-total {
  color: rgba(255, 255, 255, 0.9);
  font-size: 36px;
}

.promo-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}

.promo-price {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 8px 0;
  color: #ffd700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.9;
}

.promo-subtitle {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .promo-counter {
    font-size: 36px;
  }

  .promo-total {
    font-size: 28px;
  }

  .promo-title {
    font-size: 20px;
  }

  .promo-price {
    font-size: 14px;
  }

  .promo-subtitle {
    font-size: 14px;
  }
}

.lead-step-title {
  font-size: 28px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 700;
}

.lead-step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Form Elements */
.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

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

.lead-label {
  display: block;
  margin-bottom: 10px;
  color: #666;
  font-weight: 400;
  font-size: 13px;
}

.lead-input,
.lead-competitor-input,
.lead-select,
.lead-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #000;
}

.lead-input::placeholder,
.lead-competitor-input::placeholder,
.lead-textarea::placeholder {
  color: #86868b;
}

.lead-input:focus,
.lead-select:focus,
.lead-competitor-input:focus,
.lead-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #3c0fab;
  box-shadow: 0 0 0 4px rgba(60, 15, 171, 0.1);
}

.lead-input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}

.lead-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Button */
.lead-btn {
  padding: 16px 32px;
  background: #3c0fab;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lead-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.lead-btn:hover svg {
  transform: translateX(3px);
}

.lead-btn:hover {
  background: #2d0882;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(60, 15, 171, 0.3);
}

.lead-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.lead-btn-secondary {
  background: transparent;
  color: #3c0fab;
  border: 2px solid #3c0fab;
  margin-right: 10px;
  width: auto;
}

.lead-btn-secondary:hover {
  background: #3c0fab;
  color: white;
}

.lead-btn-secondary svg {
  order: -1;
}

.lead-btn-secondary:hover svg {
  transform: translateX(-3px);
}

/* Loading Indicators */
.lead-loading-section {
  margin: 0;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 12px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.lead-loading-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  background: #f5f5f7;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
}

.lead-loading-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lead-loading-item span {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.lead-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e0e0e0;
  border-top-color: #3c0fab;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.lead-checkmark {
  color: #10b981;
  font-size: 28px;
  font-weight: bold;
}

.lead-pending-circle {
  width: 28px;
  height: 28px;
  border: 3px solid #e0e0e0;
  border-radius: 50%;
}

/* Radio Buttons */
.lead-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-radio-option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f5f5f7;
}

.lead-radio-option:hover {
  background: #ececee;
}

.lead-radio-option .lead-radio-input {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #3c0fab;
}

.lead-radio-option .lead-radio-label {
  margin: 0;
  cursor: pointer;
  color: #000;
  font-weight: 500;
}

.lead-radio-option.selected {
  background: rgba(60, 15, 171, 0.08);
  border-color: #3c0fab;
}

/* Grid konkurencji */
.lead-competitors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.lead-competitors-input-section,
.lead-competitors-suggestions-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-competitor-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lead-competitor-input-row .lead-competitor-input {
  flex: 1;
}

.lead-btn-clear {
  padding: 12px 20px;
  background: #ff3b30;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lead-btn-clear:hover {
  background: #d32f2f;
  transform: translateY(-1px);
}

.lead-btn-clear:disabled {
  background: #d1d1d6;
  cursor: not-allowed;
  transform: none;
}

.lead-competitor-suggestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f5f5f7;
}

.lead-competitor-suggestion:hover {
  background: #ececee;
}

.lead-btn-add {
  padding: 10px 20px;
  background: #3c0fab;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lead-btn-add:hover {
  background: #2d0882;
  transform: translateY(-1px);
}

.lead-btn-add:disabled {
  background: #d1d1d6;
  color: #86868b;
  cursor: not-allowed;
  transform: none;
}

.lead-competitor-suggestion.added {
  opacity: 0.6;
  pointer-events: none;
}

/* Timeout Message */
.lead-timeout-message {
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

/* Hash Error Message */
.lead-hash-error {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
}

.lead-hash-error-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff9500;
}

.lead-hash-error h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 16px 0;
}

.lead-hash-error p {
  font-size: 16px;
  line-height: 1.6;
  color: #6e6e73;
  margin: 0 0 32px 0;
}

.lead-hash-error .lead-btn-primary {
  margin: 0 auto;
  min-width: 200px;
}

/* URL Info Notice */
.lead-url-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #f8f9fa;
  font-size: 14px;
  line-height: 1.5;
  color: #495057;
}

.lead-info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6c757d;
}

/* Checkbox */
.lead-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  /* margin: 25px 0; */
  padding: 16px;
  background: #f5f5f7;
  border-radius: 12px;
}

.lead-checkbox-group .lead-checkbox-input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #3c0fab;
}

.lead-checkbox-group .lead-checkbox-label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  font-size: 13px;
  color: #666;
}

/* Summary */

.lead-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.lead-summary-section {
  background: #f5f5f7;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.lead-summary-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d1d1d6;
}

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

.lead-summary-label {
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  font-size: 14px;
}

.lead-summary-value {
  color: #666;
  font-size: 15px;
}

.lead-summary-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.lead-summary-list li {
  padding: 5px 0;
  color: #666;
}

.lead-summary-list li::before {
  content: "✓ ";
  color: #10b981;
  font-weight: 600;
  margin-right: 5px;
}

/* Payment Placeholder */
.lead-payment-placeholder {
  text-align: center;
  padding: 60px 20px;
}

.lead-payment-placeholder h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
}

.lead-payment-placeholder p {
  color: #666;
  font-size: 16px;
}

/* Success Message */
.lead-success-message {
  text-align: center;
  padding: 60px 20px;
}

.lead-success-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Error Message */
.lead-error-message-container {
  text-align: center;
  padding: 60px 20px;
}

.lead-error-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

/* Turnstile Widget */
.lead-turnstile-widget {
  margin: 20px 0;
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .lead-form-layout {
    grid-template-columns: 350px 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .lead-form-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lead-form-image {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .lead-magnet-container {
    padding: 25px;
  }

  .lead-form-image {
    max-width: 100%;
  }

  .lead-form-row {
    grid-template-columns: 1fr;
  }

  .lead-competitors-grid {
    grid-template-columns: 1fr;
  }

  .lead-summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lead-summary-list {
    grid-template-columns: 1fr;
  }

  .lead-btn-secondary {
    width: 100%;
    margin-right: 0;
  }
}

/* Section Headings */
.lead-section-heading {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 30px 0 20px 0;
}

/* Grid Headers */
.lead-grid-header {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

/* Error Messages */
.lead-error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

.lead-custom-brand-input {
  margin-top: 15px;
  animation: slideDown 0.3s ease;
}

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

/* Button Group */
.lead-button-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .lead-button-group {
    display: grid;
    grid-template-columns: 1fr 6fr;
  }

  .lead-button-group .lead-btn {
    width: 100%;
  }
}

/* Payment Loading */
.lead-payment-loading {
  text-align: center;
  padding: 60px 20px;
}

.lead-loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0066cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

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

.lead-loading-text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.lead-loading-subtext {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Section Separator */
.lead-section-separator {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 30px 0;
}

/* Autocomplete Styles */
.lead-autocomplete-group {
  position: relative;
}

.lead-autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 4px;
}

.lead-autocomplete-suggestions.show {
  display: block;
}

.lead-autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 15px;
  color: #000;
}

.lead-autocomplete-item:hover {
  background: #f5f5f7;
}

.lead-autocomplete-item:first-child {
  border-radius: 12px 12px 0 0;
}

.lead-autocomplete-item:last-child {
  border-radius: 0 0 12px 12px;
}

.lead-autocomplete-no-results {
  padding: 12px 16px;
  color: #86868b;
  font-size: 14px;
  text-align: center;
}

/* Summary Grid - Two Columns */
.lead-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.lead-summary-section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.lead-price-box {
  background: #f0f9ff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.lead-price-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #d0e7f7;
  margin-bottom: 10px;
}

.lead-price-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 0 0;
  font-size: 18px;
  font-weight: 700;
  color: #0066cc;
}

.lead-total-amount {
  font-size: 24px;
}

@media (max-width: 768px) {
  .lead-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* Currency Selector */
.lead-currency-selector {
  margin-bottom: 20px;
}

.lead-currency-options {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.lead-currency-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.lead-currency-option:hover {
  border-color: #0066cc;
}

.lead-currency-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #0066cc;
}

.lead-currency-option input[type="radio"]:checked + .lead-currency-label {
  font-weight: 600;
  color: #0066cc;
}

.lead-currency-option:has(input:checked) {
  border-color: #0066cc;
  background: #f0f7ff;
}

.lead-currency-label {
  font-size: 14px;
  color: #333;
}

/* ============================================
   BANNER PROMOCYJNY
   ============================================ */

.promo-banner {
  background: #3c0fab;
  border-radius: 1.2rem;
  padding: 32px 24px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s ease;
  display: none; /* Domyślnie ukryty - pokazywany przez JS */
}

.promo-content {
  color: #ffffff;
}

.promo-counter {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}

.promo-number {
  color: #ffffff;
  text-shadow: none;
}

.promo-total {
  color: rgba(255, 255, 255, 0.8);
}

.promo-title {
  font-size: 28px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #ffffff;
}

.promo-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-banner {
    padding: 24px 16px;
  }

  .promo-counter {
    font-size: 36px;
  }

  .promo-title {
    font-size: 22px;
  }

  .promo-subtitle {
    font-size: 14px;
  }
}


/* ============================================
   FREE REPORT SECTION
   ============================================ */

.lead-free-report-section, .lead-c-free-report-section {
  background: #f0f7ff;
  border: 2px solid #3c0fab;
  border-radius: 1.2rem;
  padding: 32px 24px;
  text-align: center;
}

.lead-free-report-info h3, .lead-c-free-report-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3c0fab;
  margin: 16px 0 8px;
}

.lead-free-report-info p, .lead-c-free-report-info p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.lead-success-icon-small, .lead-c-success-icon-small {
  width: 48px;
  height: 48px;
  stroke: #10b981;
  margin: 0 auto;
}

.lead-btn-success, .lead-c-btn-success {
  background: #10b981;
  color: #ffffff;
}

.lead-btn-success:hover, .lead-c-btn-success:hover {
  background: #059669;
}

@media (max-width: 768px) {
  .lead-free-report-section, .lead-c-free-report-section {
    padding: 24px 16px;
  }

  .lead-free-report-info h3, .lead-c-free-report-info h3 {
    font-size: 20px;
  }
}

/* ============================================
   STEP 4 ENHANCEMENTS - Calendly & Timing
   ============================================ */

/* Zielony boks - czas generowania raportu */
.lead-report-time-box {
    background-color: #d1f4e0;
    border-left: 4px solid #10b981;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin: 20px 0;
    text-align: center;
}

.lead-report-time-box strong {
    font-weight: 700;
}

/* Podkreślenie ostrzeżenia o spamie */
.lead-spam-warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700 !important;
    color: #856404 !important;
}

/* Sekcja Calendly */
.lead-calendly-section {
    margin: 40px auto;
    max-width: 1000px;
    padding: 30px 20px;
    background: #f9fafb;
    border-radius: 8px;
}

/* Nagłówek Calendly */
.lead-calendly-header {
    margin-bottom: 30px;
    text-align: center;
}

.lead-calendly-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .lead-calendly-section {
        padding: 20px 10px;
    }

    .lead-calendly-header h3 {
        font-size: 20px;
    }

    .lead-report-time-box {
        font-size: 16px;
    }

    /* Zmniejsz wysokość Calendly widget na mobile */
    .calendly-inline-widget {
        height: 900px !important;
        min-height: 900px;
    }
}

/* Dla bardzo małych ekranów */
@media (max-width: 480px) {
    .calendly-inline-widget {
        height: 1000px !important;
        min-height: 1000px;
    }
}
