/* =========================================
   RESET / GLOBAL
========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: 'Inter';
    font-size: 16px;
    line-height: 1.5;

    background: #f5f7f6;
    color: #1f2933;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 700;
    color: #4fd17f;
    font-family: 'Montserrat';
}

p {
    margin-top: 0;
    color: #4b5563;
}

small {
    color: #6b7280;
}

/* =========================================
   LINKS
========================================= */

a {
    color: #1f7a3f;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #14532d;
}

/* =========================================
   BUTTONS
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

button {
    font-family: 'Inter';
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease;
}

button:hover {
    opacity: 0.94;
}

/* =========================================
   INPUTS
========================================= */

input,
select,
textarea {
    font-family: 'Inter';
    font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1f7a3f;
    box-shadow: 0 0 0 3px rgba(31,122,63,0.12);
}

/* =========================================
   IMAGES
========================================= */

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   UTILITIES
========================================= */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

/* =========================================
   CONTAINERS
========================================= */

.page-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}