:root {
    --white: #FFFFFF;
    --light-gray: #E5E5E5;
    --orange: #FCA311;
    --dark-blue: #14213D;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* General Body Style */
body {
    background-color: #f4f4f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
nav {
    background-color: var(--dark-blue);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover {
    color: var(--orange);
}

/* Review Section */
.review-container {
    width: 80%;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    margin: 20px auto;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 80%;
    height: 50%;
    object-fit: scale-down;
}

.text-container {
    flex: 2;
    padding: 20px;
}

.text-container h2 {
    color: #333;
    margin-bottom: 10px;
}

.text-container p {
    color: #555;
    line-height: 1.6;
}

.buy-now {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.buy-now:hover {
    background-color: #cc7a00;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    margin-top: auto; /* Ensures the footer stays at the bottom */
}