/* Insights Container */
.insights-container {
    padding: 100px 0;
    max-width:70%;
    margin: auto;
}

.insight-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.insight-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.insight-content {
    padding: 30px;
}

.insight-content h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.insight-content p {
    margin-bottom: 20px;
}

.insight-content ul,
.insight-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.insight-content li {
    margin-bottom: 10px;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .main-nav a {
        padding: 10px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .insight-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .date {
        margin-top: 10px;
    }
    .insights-container {
    padding: 60px 0;
    max-width:90%;
    margin: auto;
}
}