/* Volume Discount Section */
.volume-discount {
    background-color: #f9f9f9;
    padding: 4rem 5%;
    text-align: center;
}

.discount-tiers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.discount-tier {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tier-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tier-discount {
    font-size: 1.5rem;
    color: #ff5a5f;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-price {
    color: #666;
}

.contact-sales {
    margin-top: 2rem;
}

/* License Calculator */
.license-calculator {
    padding: 4rem 5%;
    background-color: white;
}

.calculator-container {
    max-width: 800px;
    margin: 2rem auto 0;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calculator-inputs {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 200px;
}

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

.input-group input, .input-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.calculator-results {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

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

.result-label {
    font-weight: 600;
}

.result-value {
    font-weight: 700;
    color: #ff5a5f;
}

.calculator-cta {
    text-align: center;
}

/* Payment Options */
.payment-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-10px);
}

.payment-option i {
    font-size: 3rem;
    color: #ff5a5f;
    margin-bottom: 1rem;
}

.payment-option h3 {
    margin-bottom: 1rem;
}