.site-page {
    margin: 0;
    background-color: #050505;
    font-family: Arial, sans-serif;
}

.site-page .page-box {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    background-color: white;
}

.site-page .page-header {
    background-color: darkgreen;
    color: white;
    text-align: center;
    padding: 20px;
}
.site-page .page-header a {
    color: white;
    text-decoration: none;
}

.site-page .page-header a:hover {
    color: lightblue;
}
.site-page .page-header h1 {
    margin: 0;
    font-size: 38px;
}

.site-page .small-image-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.site-page .small-image-link {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 110px;
    text-decoration: none;
    overflow: hidden;
    border: 2px; black;
    box-shadow: 0 0 8px black;
}

.site-page .small-image-link img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    display: block;
}

.site-page .small-image-link span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(241, 243, 244);
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
.site-page .small-image-link:hover span {
    color: pink;
}

/* ABOUT US SECTION */

.site-page .about-row {
    display: flex;
    gap: 30px;
    padding: 25px;
    align-items: flex-start;
}

.site-page .about-left {
    width: 50%;
    background-color: #f7f7f7;
    padding: 20px;
    box-sizing: border-box;
}

.site-page .about-right {
    width: 50%;
    text-align: center;
}

.site-page .about-left h2,
.site-page .about-right h2 {
    color: darkgreen;
    font-size: 32px;
    margin-top: 0;
}

.site-page .about-left h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.site-page .about-left p {
    font-size: 17px;
    line-height: 1.6;
    text-align: left;
    margin-top: 0;
    margin-bottom: 18px;
    width: 100%;
}



/* WHY SHOP WITH US SECTION */

.site-page .why-shop {
    padding: 25px;
}

.site-page .why-shop h2 {
    color: darkgreen;
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
}

.site-page .why-intro {
    text-align: left;
    font-size: 17px;
    line-height: 1.5;
    width: 90%;
    margin: 0 auto 30px auto;
}

.site-page .why-shop-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.site-page .why-box {
    width: 32%;
    text-align: left;
}

.site-page .why-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.site-page .why-box h3 {
    color: darkgreen;
    font-size: 24px;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 10px;
}

.site-page .why-box p {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
}


/* BOTTOM NAVIGATION */

.site-page .bottom-nav {
    background-color: lightblue;
    text-align: center;
    padding: 20px;
    white-space: nowrap;
}

.site-page .bottom-nav a {
    color: darkgreen;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    margin-right: 25px;
}

.site-page .bottom-nav a:last-child {
    margin-right: 0;
}

.site-page .bottom-nav a:hover {
    color: black;
}


/* FOOTER */

.site-page .page-footer {
    background-color: darkgreen;
    color: white;
    text-align: center;
    padding: 20px;
}

.site-page .page-footer p {
    margin: 0;
}