*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #2E2F30;
    color: #ffffff;
    min-height: 100vh;
}

a {
    color: #CCCECF;
    text-decoration: underline;
}

a:hover {
    color: #A5402B;
}

.layout {
    max-width: 1100px;
    margin: 0 auto;
}

.content {
    flex: 1;
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    border-bottom: 2px solid #A5402B;
    padding-bottom: 30px;
    margin-bottom: 30px;
    text-align: center;
}

h1 {
    font-size: 4em;
    color: #CCCECF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

header p {
    color: #aaaaaa;
    font-size: 1.4em;
    font-style: italic;
    letter-spacing: 3px;
}

h2 {
    font-size: 1.8em;
    color: #CCCECF;
    margin-bottom: 15px;
}

section {
    border-bottom: 1px solid #A5402B;
    padding: 30px 0;
}

section p {
    color: #CCCECF;
}

.product-note{
    color: #aaaaaa;
    font-style: italic;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.product {
    text-align: center;
}

.sawyer-product img {
    max-width: 280px;
    max-height: 300px;
    object-fit: contain;
}

.product img {
    width: 100%;
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.product img:hover {
    transform: scale(2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product p {
    margin-top: 8px;
    color: #CCCECF;
    font-style: normal;
}

footer {
    color: #aaaaaa;
    padding: 30px 0;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2em;
    }
}