/* ===================================================
   HOME PAGE STYLES
   Hero section, benefits, comparison table
   =================================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* ===================================================
   BENEFIT CARDS
   =================================================== */

.benefit-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* ===================================================
   COMPARISON TABLE STYLES
   =================================================== */

.comparison-table {
    background: white;
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table .highlight-row {
    background: #e8f4f8 !important;
    font-weight: bold;
}

.comparison-table .check-mark {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-table .cross-mark {
    color: var(--danger-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===================================================
   STATISTICS SECTION
   =================================================== */

.risk-return-section {
    background: linear-gradient(to right, var(--bg-lighter) 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ===================================================
   CTA SECTION
   =================================================== */

.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    margin-top: 40px;
}

.cta-section h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ===================================================
   RESPONSIVE HOME PAGE
   =================================================== */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
