/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



body {
            font-family: Arial, sans-serif;
            margin: 20px;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        header {
            text-align: center;
            margin-bottom: 30px;
        }
        h1 {
            color: #007BFF;
        }
        section {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        h2 {
            color: #007BFF;
        }
        p {
            margin: 10px 0;
        }
        
        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .image-column {
            flex: 1 1 calc(33.33% - 10px); /* Three columns with space */
            margin: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .image-column img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .image-column {
                flex: 1 1 calc(50% - 10px); /* Two columns on smaller screens */
            }
        }
        @media (max-width: 480px) {
            .image-column {
                flex: 1 1 100%; /* Single column on very small screens */
            }
        }