/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
background-color: #ffffff;
color: #000000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
text-decoration: none;
color: rgb(255, 255, 255);
}

/* Navbar Styles */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #111;
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 1000;
}

.navbar .logo {
font-size: 1.5rem;
font-weight: bold;
color: #ffffff
}

.navbar .menu {
display: flex;
gap: 1.5rem;
}

.navbar .menu a {
font-weight: 600;
transition: color 0.3s;
}

.navbar .menu a:hover {
color: #0af;
}

/* Hamburger Styles */
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.hamburger div {
width: 25px;
height: 3px;
background-color: white;
transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
.navbar .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111;
    flex-direction: column;
    display: none;
    padding: 1rem 2rem;
}

.navbar .menu.show {
    display: flex;
}

.hamburger {
    display: flex;
}
}

/* Responsive stacking */
@media (max-width: 768px) {
  .reviews-container {
    flex-direction: column;
    align-items: center;
  }
}



.content {
  padding: 2rem;
  }


/* Footer Styles */
footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    margin-top: auto;
  }
  
  /* Ensure full-height layout for sticky footer on short pages */
  body, html {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .content {
    flex: 1;
  }
