body {
      font-family: Arial, sans-serif;
      background-color: #fdfdfd;
      color: #333;
      line-height: 1.7;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    h1, h2 {
      color: #2c3e50;
    }

    h1 {
      font-size: 2.1rem;
      margin-bottom: 1rem;
        
    }

    h2 {
      font-size: 1.6rem;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
    }

    p {
      margin-bottom: 1.2rem;
    }

    ul {
      padding-left: 1.2rem;
      margin-bottom: 1.5rem;
    }

    li {
      margin-bottom: 0.6rem;
    }

    a {
      color: #1e90ff;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    strong {
      font-weight: 600;
    }

    @media (max-width: 600px) {
      .container {
        padding: 20px 15px;
      }

      h1 {
        font-size: 1.8rem;
      }

      h2 {
        font-size: 1.4rem;
      }
    }
      
    .cta-button {
  display: inline-block;
  background-color: #1e90ff;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #187bcd;
}  
      
.top-bar {
  background-color: #245cb5;
  padding: 12px 20px;
  text-align: center;
}

.top-bar a {
  color: white;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}      
      
  
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px; /* Optional: rounded corners */
} 
      
.ratings {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 16px;
}

.rating-box {
  width: 80px;
  height: 16px;
  background-color: #ddd;
  position: relative;
  overflow: hidden;
}

.rating {
  height: 100%;
  background-color: gold;
}

.r-lnk {
  margin-left: 10px;
  font-weight: bold;
}     


ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

ul li a {
  color: #1e90ff;
  text-decoration: none;
  font-size: 14px;
}

ul li a:hover {
  text-decoration: underline;
}

      