Glow Mode On
A collection page of LEDSone UK Ltd
About
/* Basic Reset & Body Styling */ body { margin: 0; font-family: Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f8f9fa; min-width: 320px; /* Ensures minimum width for very small screens */ } a { color: #000000; text-decoration: none; } a:hover { text-decoration: underline; } img { max-width: 100%; height: auto; display: block; } /* General Container for Centering Content */ .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; /* Add padding for smaller screens */ box-sizing: border-box; /* Include padding in element's total width */ } /* --- Placeholder Site Header --- */ .site-header-placeholder { background-color: #fff; padding: 15px 40px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; flex-wrap: wrap; /* Allow wrapping on small screens */ } .site-header-placeholder .logo { font-size: 1.8em; font-weight: bold; color: #333; } .site-header-placeholder nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; /* Allow wrapping on small screens */ justify-content: center; } .site-header-placeholder nav li { margin-left: 20px; } .site-header-placeholder nav a { color: #555; font-weight: 500; } /* --- Section 1: Hero Banner --- */ .hero-banner { display: flex; align-items: center; justify-content: center; padding: 40px 20px; position: relative; overflow: hidden; background-color: #f0f2f5; min-height: 400px; } .hero-banner-content { display: flex; flex-direction: column; /* Stack by default on mobile */ align-items: center; max-width: 1200px; width: 100%; position: relative; z-index: 2; } .banner-image-area { flex: 1; /* Allow to grow */ width: 100%; /* Take full width on small screens */ position: relative; padding-right: 0; /* Remove padding on small screens */ margin-bottom: 20px; /* Spacing when stacked */ } .banner-image-area img { max-width: 100%; height: auto; display: block; } .banner-text-area { flex: 1; /* Allow to grow */ padding: 20px