
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #424752;
    background-color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px;
}

main h1 {
    margin: 0 0 16px;
    font-size: 2rem;
    font-weight: 700;
    color: #1B1C1C;
}

main p {
    margin: 0;
    line-height: 1.6;
}
