* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f7f4ee;
    color: #171717;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    line-height: 1.1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border: none;
    border-radius: 50px;
    background: #e87532;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: #cf5f21;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }
}