* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

main {
    padding: 2rem 0;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.placement-options {
    margin-bottom: 2rem;
}

.option-tabs {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #3498db;
    border-bottom-color: #3498db;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.add-business-form {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

#working-hours {
    min-height: 80px;
    resize: vertical;
  }
  
  .working-hours-example {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
  }

.form-group input:required {
    border-left: 3px solid #3498db;
  }
  
  .form-group input:invalid {
    border-left: 3px solid #e74c3c;
  }

  .form-group select:required {
    border-left: 3px solid #3498db;
  }

  .form-group select:invalid {
    border-left: 3px solid #e74c3c;
  }

  .form-group textarea:required {
    border-left: 3px solid #3498db;
  }
  
  .form-group textarea:invalid {
    border-left: 3px solid #e74c3c;
  }

.file-preview img {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  margin-top: 10px;
  object-fit: contain;
}

.file-preview {
  display: flex;
  justify-content: left;
  align-items: left;
  margin: 10px 0;
}
  
  .error-hint {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    display: none;
  }
  
  input:invalid + .error-hint {
    display: block;
  }

.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.pricing-cards {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    display: flex;
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card.vip {
    border: 1px solid #764ba2;
}

.card-header {
    padding: 25px;
    min-width: 160px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.pricing-card.vip .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 5px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.price-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

.card-features {
    padding: 25px;
    flex-grow: 1;
}

.card-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.card-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #4cd137;
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-card.vip .check-icon {
    background: #764ba2;
    color: white;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #3498db;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.pricing-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.pricing-btn.vip-btn {
    background: #764ba2;
    color: white;
}

.pricing-btn.vip-btn:hover {
    background: #5d3a8b;
}

.popular-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-card {
        flex-direction: column;
        max-width: 400px;
    }
    
    .card-header {
        min-width: auto;
        padding: 20px;
    }
    
    .card-features {
        padding: 20px;
    }
}

.comparison-section {
    padding: 2rem 0;
    background-color: #f9fafb;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: auto;
    justify-content: center;
    display: flex;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: #f8fafc;
    background: linear-gradient(135deg, #f8f9fa 0%, #005eff 100%);
}

.comparison-row {
    display: contents;
}

.comparison-row > div {
    padding: 1rem;
    display: flex;
    align-items: center;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgb(0, 0, 0);
}

.comparison-feature {
    font-weight: 500;
    background-color: #f8fafc;
    border-bottom: 1px solid #edf2f7;
    background: linear-gradient(135deg, #f8fafc 0%, #a2c7f7 100%);
}

.comparison-plan {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #edf2f7;
    
}

.plan-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.plan-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.popular-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.comparison-value {
    justify-content: center;
    border-bottom: 1px solid #edf2f7;
    min-height: 60px;
}

.check {
    display: inline-flex;
    width: 28px;
    height: 28px;
    background: #4cd137;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.highlight .check {
    background: white;
    color: #764ba2;
}

.cross {
    display: inline-flex;
    width: 28px;
    height: 28px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.plan-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: #3498db;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 160px;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-btn.highlight {
    background: white;
    color: #764ba2;
}

.plan-btn.highlight:hover {
    background: #f8f9fa;
}

.footer > div {
    padding: 1.5rem 1rem;
}

@media (max-width: 768px) {
    .comparison-container {
        padding: 0;
    }
    
    .section-heading {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .comparison-table {
        min-width: 100%;
        border-radius: 0;
    }
    
    .plan-price {
        font-size: 1.5rem;
    }
    
    .plan-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}