 /* General */
 html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    /* Disable pinch zoom on all pages */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background-color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 2rem;
    padding: 0;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-size: 70px 70px;
    background-repeat: repeat;
    opacity: 0.36;
    pointer-events: none;
    z-index: -1;
}

/* Global container constraints for mobile */
@media (max-width: 768px) {
    .hero-section,
    .footer-section,
    .styled-section {
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
    }
}