/* =========================================
   reset.css
   - Minimal + practical reset for LP / feature pages
   ========================================= */

/* 1) Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2) Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* 3) Base */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* 4) Media defaults */
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 5) Form elements */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* 6) Links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    text-decoration: underline;
}

/* 7) Lists */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 8) Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9) Misc */
hr {
    border: none;
    border-top: 1px solid currentColor;
    opacity: 0.2;
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* 10) Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

p {
    color: #333;
}

/* body {
    font-family: 'Roboto', sans-serif;
} */

.header_bg {
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}