/* Base Reset and Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Responsive Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

p.subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Chart Section Styling */
.chart-section {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    padding: 30px;
    transition: transform 0.2s ease;
}

.chart-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 25px;
}

.flourish-embed {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }

    .chart-section {
        padding: 15px;
        margin-bottom: 25px;
    }

    .chart-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
    
    .chart-section h2 {
        font-size: 1.2rem;
    }
}