body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

main {
    padding: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.bestsellers-section {
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    width: 30%;
    margin: 10px 0;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
text-align: center;
}

.product h3 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
text-align: center;
}

.product p {
    font-size: 1rem;
    color: #333;
}

#brands .brand-list, #scent-families .scent-family-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.brand, .scent-family {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-align: center;
    width: 50%;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
