* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, .hero-title {
    font-family: 'Playfair Display', sans-serif;
}

h2 {
    font-size: 52px;
    line-height: 100%;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', sans-serif;
}

p {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: max-content;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(90deg, #FFE79F 0%, #E7C782 100%);
    border: 1px solid #FFEBAE;
    border-radius: 5px;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #795129!important;
    transition: box-shadow 0.3s;
}

.button:hover {
    box-shadow: 0 4px 10px rgba(245, 208, 111, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    h2 {
        font-size: 42px;
        line-height: 114%;
        font-weight: 500;
        letter-spacing: -0.01em;
    }
}