@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

:root{
   --blue: #003082;
   --gray: #767676;
   --h2_font_size : 30px;

}

body{
  font-family: 'Roboto', sans-serif;
}

.legal-content-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 50px;
  background-color: #ffffff; /* यह स्टाइल पहले कमेंटेड थी, मैंने इसे ठीक कर दिया है */
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  border-top: 5px solid var(--blue);
}

.legal-content-section h1 {
  font-size: 2.8rem;
  color: var(--blue);
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #e0e8f3;
  padding-bottom: 20px;
}

.legal-content-section h2 {
  font-size: 2rem;
  color: var(--blue);
  margin-top: 40px;
  margin-bottom: 15px;
}
hr{
position: relative;
    width: 70px;
    height: 4px;
    background-color: var(--blue);
    border-radius: 2px;
    top: -64px;
    left: -5px;
    margin: auto;
}



.legal-h2{
  display: flex;
  /* border: 1px solid black; */
  margin-bottom: 70px;
  justify-content: center;

}
.legal-content-section p,
.legal-content-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 20px;
}

.legal-content-section ul {
  list-style-type: none;
  padding-left: 20px;
}

.legal-content-section li::before {
  content: '•';
  color: var(--blue);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.1em;
}

.legal-content-section b,
.legal-content-section strong {
  color: var(--blue);
}

@media (max-width: 768px) {
  .legal-content-section {
    margin: 20px;
    padding: 30px 25px;
  }

  .legal-content-section h1 {
    font-size: 2rem;
  }

  .legal-content-section h2 {
    font-size: 1.3rem;
  }
}
