* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #0a1f44;
    color: #fff;
    padding: 15px 0;
}

.logo {
    font-size: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero {
    background: #f4f7fb;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    background: #0a1f44;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
}

.features {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
    gap: 20px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    flex: 1;
}

.feature-box i {
    font-size: 30px;
    color: #0a1f44;
    margin-bottom: 10px;
}

.articles {
    padding: 50px 0;
}

.article-grid {
    display: flex;
    gap: 20px;
}

.article-card {
    border: 1px solid #ddd;
    padding: 20px;
    flex: 1;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #0a1f44;
    text-decoration: none;
    font-weight: bold;
}

.newsletter {
    background: #0a1f44;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.newsletter input {
    padding: 10px;
    width: 250px;
    border: none;
}

.newsletter button {
    padding: 10px 15px;
    background: #fff;
    border: none;
    cursor: pointer;
}

footer {
    background: #111;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}





/* Explore Insights Section */
.explore-insights {
    text-align: center;
}

.explore-insights h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #333333; /* match your header color or site theme */
}

.explore-insights p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.insight-card {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card i {
    color: #333333; 
    margin-bottom: 15px;
}

.insight-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.insight-card p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #555;
}

.insight-card .btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 16px;
    background-color: #333333;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.insight-card .btn:hover {
    background-color: #333333;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}