 
        .summary-card {
    background: linear-gradient(135deg, rgba(44, 125, 160, 0.1) 0%, rgba(169, 214, 229, 0.1) 100%);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
}
        /* Results */
        .investment-results {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .result-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .result-card:hover {
            transform: translateY(-5px);
        }
        
        .result-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0.5rem 0;
        }
        
        .result-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .chart-container {
            height: 300px;
            margin: 2rem 0;
            position: relative;
        }
        
        .comparison-chart {
            height: 400px;
            margin: 2rem 0;
        }
        
        /* Results Table */
        .results-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        
        .results-table th {
            background-color: var(--light-gray);
            padding: 0.75rem;
            text-align: left;
            border-bottom: 2px solid var(--border-color);
        }
        
        .results-table td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .results-table tr:hover {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        /* Scenario Cards */
        .scenario-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .scenario-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .scenario-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Real-time Indicator */
        .real-time-indicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .pulse {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #28a745;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(2.5); opacity: 0.3; }
            100% { transform: scale(1); opacity: 1; }
        }
        
    
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .investment-results {
                grid-template-columns: 1fr;
            }
            
            .scenario-cards {
                grid-template-columns: 1fr;
            }
            
            .result-value {
                font-size: 1.5rem;
            }
        }
    .faq-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(169, 214, 229, 0.1) 0%, rgba(44, 125, 160, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.faq-header h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq-item {
    margin-bottom: 1.8rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background-color: white;padding:1rem
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(44, 125, 160, 0.05);
    color: var(--primary-dark);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(44, 125, 160, 0.1);
}

.faq-question::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-color);
    line-height: 1.7;
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}