/* styles.css */

/* General styles for the main content */
main {
    padding: 20px;
}

/* Styles for the intel statistics section */
.intel-stats {
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.intel-stats h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #333;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat {
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 40px);
    box-sizing: border-box;
}

.stat h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
}

.stat p {
    font-size: 2em;
    margin: 0;
    color: #4CAF50;
}
