body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    line-height: 1.6;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    padding: 0px;
    z-index: 1000;

}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    width: 100%;
}

.logo img {
    height: 1000px;
    margin-right: 0px;
}

.navbar_items {

    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}


.navbar_items ul {
    list-style: none;
    display: flex;
    margin: 0px;
    padding: 0px;
    column-gap: 5px;
}

.navbar_items li {
    margin-left: 120px;
    margin-right: 10px;
}

.navbar_items a {
    color: black;
    text-decoration: none;
    font-size: 60px;
    padding: 0px;
}


.page_info {
    font-size: 100px;
    color: black;
    margin-top: 10px;
    margin-left: 350px;

}


.content {
    margin-top: 80px;
    padding: 20px;
}

.container image {
    width: 100%;
    height: auto;
    object-fit: cover;

}

.main_image img {

    width: 100%;
    height: auto;
    object-fit: cover;

}

.message {
    margin: 20px;
    padding: 20px;
    border: 1px;
    border-radius: 5px;
    font-size: 100px;
    text-align: center;
    color: #5B2E24;
}

.image_section {
    text-align: center;
    margin: 20px 0;

}

.image_section img {
    width: 100%;
    height: auto;

}



.encouragement {
    font-size: 100px;
    color: #5B2E24;
    margin-top: 10px;
    text-align: center;
}

.encouragement h2 {
    font-size: 80px;
    color: #5B2E24;
    margin-top: 10px;
    margin-bottom: 200px;

}

.shop-button-container {
    display: flex;
    justify-content: center;
    margin: 40px 10px;
}

.shop-button {
    padding: 40px 80px;
    font-size: 80px;
    color: black;
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.shop-button:hover {
    background-color: black;
    color: white;
}

hr {
    border: 0;
    height: 2px;
    background: black;
    margin: 300px 0;
}

.sub-section-title {
    text-align: center;
    margin: 200px 0px;

}

.sub-section-title h2 {
    font-size: 100px;
    color: #5B2E24;
    font-weight: bold;
}


.product-section {
    display: flex;
    justify-content: space-around;
    margin: 80px 10px;
}

.product-card {
    text-align: center;
    margin: 20px;
}

.product-card img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s;
}

.product-card img:hover {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 70px;
    margin: 10px 0;
}

.product-card p {
    font-size: 70px;
    color: #555;
}

.shop-now-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 50px;
    color: black;
    text-decoration: none;
    border: 1px solid black;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.shop-now-button:hover {
    background-color: black;
    color: white;
}

.explore-more-container {
    display: flex;
    justify-content: center;
    margin: 150px 0;

}

.explore-more-button {
    padding: 20px 80px;
    font-size: 90px;
    color: black;
    background-color: white;
    border: black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.explore-more-button:hover {
    background-color: black;
    color: white;
}

.rewards-section {
    background-color: white;
    color: black;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;

}

.rewards-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.rewards-content h2 {
    font-size: 80px;
    margin: 0;
}

.rewards-content h2 span {
    font-size: 80px;
    font-weight: bold;
    color: #f0c040;
}

.rewards-content p {
    font-size: 70px;
    margin: 0;
}

.signup-button {
    padding: 10px 20px;
    font-size: 70px;
    color: black;
    background-color: white;
    border: black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.signup-button:hover {
    background-color: black;
    color: white;
}


.footer {
    background-color: black;
    color: white;
    padding: 40px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.FOOTER-CONTAINER {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
}

.ABOUT,
.ACCOUNT,
.SOCIAL {
    flex: none;
    padding: 0px;
    margin: 0 400px;
    font-size: 50px;
}

.ABOUT ul,
.ACCOUNT ul,
.SOCIAL ul {
    list-style-type: none;
    padding: 0;
}

.ABOUT li,
.ACCOUNT li,
.SOCIAL li {
    margin: 10px 0;
}

.ABOUT a,
.ACCOUNT a,
.SOCIAL a {
    color: white;
    text-decoration: none;
}

.SOCIAL {
    text-align: center;
}

.SOCIAL h3 {
    margin-bottom: 20px;
}

.SOCIAL_ICONS {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.SOCIAL_ICONS a {
    color: white;
    font-size: 150px;
    text-decoration: none;
}