@charset "utf-8";
/* CSS Document */

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 40px 20px;
            background-color: #f9f9f9;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            margin-bottom: 10px; /* Reduced to bring sub-header closer */
            color: #222;
            text-align: center;
        }

        /* Styling for the new Sub-header */
        .sub-header {
            font-size: 1.2rem;
            font-weight: 600;
            color: #555;
            margin-bottom: 25px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* The Container for the boxes */
        .container {
            display: flex;
            flex-direction: row;
            gap: 20px;
            padding: 20px;
            border: 2px solid #d3d3d3; 
            border-radius: 12px;       
            background-color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        /* The Individual Boxes */
        .box {
            width: 300px;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
            background-color: #eee;
        }

        .box:hover {
            transform: translateY(-5px);
        }

        .box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Footer Text Style */
        .footer-text {
            margin-top: 30px;
            max-width: 600px;
            /*text-align: center;*/
            line-height: 1.6;
            color: #666;
        }
		
		/* Top Banner area */
        .banner-wrapper {
            max-width: 430px;
        }

        /* Responsive Mode */
        @media (max-width: 1050px) {
            .container {
                flex-direction: column;
            }
            
            .box {
                width: 300px; 
            }
        }