
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    
  
  }

body {
    background-image: url('../img/Page2.jpg');
    color: #121212;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
     overflow-x: hidden;
}

.reviews-container {
    width: 80%;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    margin-top: 40px;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.reviews-container p {
    color: #353434cc;
   }

.review-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    text-align: left;
    position: relative;
}

.stars {
    font-size: 18px;
}

.filled {
    color: #121212; /* Purple for filled stars */
}

.unfilled {
    color: gray; /* Gray for unfilled stars */
}

.timestamp {
    position: absolute;
    right: 70px;
    top: 22px;
    color: #bbb;
    font-size: 12px;
}

.verified {
    color: #a855f7;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.verified::before {
    content: "✔";
    margin-right: 5px;
}

/* Footer Styles */
.footer {
    background: #222;
    color: #fff;
    padding: 15px 10px;
    text-align: center;
    margin-top: 30px;
    margin: 20px;
    border-radius: 5px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    margin: auto;
    padding-bottom: 20px;
  
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    padding: 10px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    color: #ffcc00;
    margin-bottom: 10px;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #ffcc00;
  }
  
  /* Social Media Links */
  .footer-section .fab, 
  .footer-section .fas {
    margin-right: 8px;
    font-size: 16px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    margin-top: 10px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
  }
