/* Basic Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

/* Hide scrollbar WebKit */
::-webkit-scrollbar {
    display: none;
}

body {
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Global Container Utility */
.container-standard {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .container-standard {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .container-standard {
        padding: 0 32px;
    }
}

/* Global Section Header Component */
.section-header-standard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .section-header-standard {
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }
}