/* Site-wide margins and centering */
body {
max-width: 1200px !important;
margin: 0 auto !important;
padding: 0 20px !important;
box-sizing: border-box !important;
}
/* Responsive margins */
@media (max-width: 1240px) {
body { padding: 0 30px !important; }
}
@media (max-width: 768px) {
body { padding: 0 15px !important; }
}
@media (max-width: 480px) {
body { padding: 0 10px !important; }
}
/* Container adjustments */
.site, .site-content, .container, .wp-block-group {
max-width: 100% !important;
margin-left: auto !important;
margin-right: auto !important;
}
/* Image responsiveness */
img {
max-width: 100% !important;
height: auto !important;
}
