/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f4f7f8;
    padding: 20px;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header */
header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #007bff;
}

header h1 {
    font-size: 28px;
    color: #333;
}

header p {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

/* Sections */
section {
    margin-top: 25px;
    padding: 15px;
    border-left: 5px solid #007bff;
    background: #f9f9f9;
    border-radius: 8px;
}

section h2 {
    font-size: 22px;
    color: #007bff;
    margin-bottom: 10px;
}

section p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Key Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.stat-box {
    background: #007bff;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.stat-box h3 {
    font-size: 24px;
    font-weight: bold;
}

.stat-box p {
    font-size: 14px;
    margin-top: 5px;
}

/* Job Trends Chart */
.job-trends {
    text-align: center;
    padding: 20px;
}

.job-trends canvas {
    max-width: 100%;
    height: auto;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666
}
