.calculator-section {
    padding: 4rem 2rem;
    font-family: system-ui, -apple-system, sans-serif;
}

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

.main-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.highlight {
    color: #0099ff;
}

.subtitle {
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.calculator-box {
    background: rgba(0, 160, 250, 0.05);
    border-radius: 24px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    animation: fadeIn 1s ease-out;
}

.settings-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.settings-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.amount-input, .duration-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.amount-input:focus, .duration-select:focus {
    border-color: #0099ff;
    outline: none;
}

.slider-container {
    width: 100% !important;
    position: relative;
    padding: 1rem 0;
}

.range-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: #ddd;
    border-radius: 2px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #0099ff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-label {
    color: #666;
    font-size: 0.875rem;
}

.months-label {
    font-weight: 600;
    margin-top: 1rem;
}

.results-area {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.total-amount, .monthly-interest {
    margin-bottom: 2rem;
}

.label {
    color: #666;
    font-size: 0.875rem;
}

.amount {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.rate-info {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    margin: 2rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    color: #666;
}

.cta2-button {
    width: 100%;
    background: #0099ff;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.cta2-button:hover {
    background: #0088ee;
    transform: translateY(-2px);
}

.disclaimer2 {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .calculator-section {
        padding: 2rem 1rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .calculator-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .results-area {
        padding: 1rem;
    }

    .amount {
        font-size: 2rem;
    }
}