* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1d1d1d;
    background: #ffffff;
}

header {
    background: #ffffff;
    padding: 18px 24px;
    border-bottom: 2px solid #343A40;
}

nav {
    width: min(1100pc, 100%);
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #343A40;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: #343A40;
    display: inline;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #343A40;
    text-decoration: none;

    border: 8px solid #343A40;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a:hover {
    background: #343A40;
    color: white;
    transition: 0.2s;
}

.hero {
    min-height: 65vh;
    padding: 80px 24px;
    display: grid;
    place-items: center;
    text-align: center;
    background: #58D0DC;
}

.hero div {
    max-width: 750px;
}

.hero h1 {
    margin: 10px 0;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    color: #343A40;
}

.eyebrow {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.button {
    display: inline-block;
    margin-top: 16px;
    padding: 13px 22px;
    color: white;
    background: #343A40;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    width: min(1100px, 100%);
    padding: 60px 24px;
    border-top: 2px solid #343A40;
    border-bottom: 2px solid #343A40;
}

.alternate {
    width: 100%;
    margin: auto;
    padding: 60px 24px;
    background: #58D0DC;
}

.section > *,
.alternate > * {
    max-width:1100px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    padding: 60px;
    border: 2px solid #58D0DC;
    border-radius: 12px;
}

.price {
    font-weight: bold;
}

footer {
    padding: 25px;
    color: white;
    background: #343A40;
    text-align: center;
}

@media (max-width: 650px) {
    nav {
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}
