/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Container for the infographic */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive image that scales properly */
.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}

/* Tablet and larger screens */
@media (min-width: 769px) {
    .container {
        margin-top: 30px;
        margin-bottom: 30px;
        border-radius: 8px;
    }
}

/* Very large screens - limit max width */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
