.RD .calculator-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.RD .results-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
}

.RD .result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.RD .result-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.RD .result-card h3 {
    font-size: 0.9em;
    margin-bottom: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.RD .result-card .amount {
    font-size: 1.6em;
    font-weight: bold;
}

.RD .maturity-highlight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 15px;
}

.RD .maturity-highlight h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.RD .maturity-highlight .total {
    font-size: 2.5em;
    font-weight: bold;
}

.RD .breakdown-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.RD .breakdown-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.RD .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.RD .breakdown-item:last-child {
    border-bottom: none;
    font-weight: bold;
    color: #ff6b6b;
    font-size: 1.1em;
}

.RD .breakdown-label {
    color: #495057;
    font-weight: 500;
}

.RD .breakdown-value {
    color: #2c3e50;
    font-weight: bold;
}

.RD .comparison-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.RD .comparison-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.RD .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.RD .comparison-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 2px solid #764ba2;
    transition: all 0.3s ease;
}

.RD .comparison-card:hover {
    border-color: #764ba2;
    transform: translateY(-2px);
}

.RD .comparison-card h4 {
    color: #666666;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.RD .comparison-card .comp-amount {
    font-size: 1.2em;
    font-weight: bold;
    color: #764ba2;
}

.RD .chart-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.RD .chart-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.RD .progress-bar {
    background: #e9ecef;
    border-radius: 25px;
    height: 30px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.RD .progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    transition: width 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.RD .info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.RD .info-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
}

.RD .info-box h3 {
    color: #856404;
    margin-bottom: 10px;
}

.RD .info-box ul {
    color: #856404;
    padding-left: 20px;
}

.RD .info-box li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .RD .calculator-section,
    .RD .info-section {
        grid-template-columns: 1fr;
    }
    
    .RD .result-grid {
        grid-template-columns: 1fr;
    }
    
    .RD .container {
        padding: 20px;
        margin: 10px;
    }
    
    .RD .header h1 {
        font-size: 2em;
    }
}