*{
    margin: 0;padding: 0;
    box-sizing: border-box;
}
body{
      background-image:  url(/Source/18.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center;
 
  
  transition: background-image 1s cubic-bezier(0.4,0,0.2,1);
  /* fallback for browsers that don't support background-image transition */
  transition-property: background-image, background-color;
  transition-duration: 1s;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.agreement {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f988;
  border: 2px solid #19cedb;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
}

.agreement h1 {
  font-size: 2rem;
  color: #20c4ff;
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #19cedb;
  padding-bottom: .5rem;
}

.agreement h2 {
  font-size: 1.4rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: #0ecee7;
}

.agreement p {
  margin-bottom: 1rem;
  color: white;
  text-align: justify;
}

.agreement strong {
  color: #d4e20f;
}

.agreement h3 {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #13d9f3;
}



.agreement ul, 
.agreement ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.agreement li {
  margin-bottom: .5rem;
  color: white;
}
.policy-section {
  background: #ffffff80;
  padding: 20px;
   max-width: 800px;
  margin: 20px 0;
  border-left: 5px solid #19cedb;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
  color: #19cedb;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.policy-section p,
.policy-section ul li {
  color: #ffffff;
  line-height: 1.6;
}

.policy-section ul {
  margin: 10px 0 0 20px;
}

.policy-section a {
  color: #0077cc;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
  color: yellow;
}
