What is Responsive Design?
Responsive design ensures your website looks good on all devices, from desktops to smartphones.
Using Media Queries
Media queries in CSS allow you to apply styles based on device characteristics. Example:
@media (max-width: 600px) { body { background-color: lightblue; } }
Flexible Layouts
Use percentages instead of fixed units for widths to create a fluid layout that adapts to screen sizes.

