body:has(.pagesme) {
  padding: 0;
  margin: 0;
}

.pagesme {
  max-width: 900px;
  margin: 60px auto;
  padding: 60px 80px;
  background-color: #ffffff;
  color: #222222;
  line-height: 1.8;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08); 
  border-radius: 4px;
}

/* 3. Main Title - "Privacy Policy" */
.pagesme h1 {
  font-size: 3.5rem; 
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 50px;
  color: #111111;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  position: relative;
  display: block;
}

/* A stylish accent line below the main heading */
.pagesme h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #005DAA; /* Rotary Blue */
  margin: 20px auto 0;
}

/* 4. Section Headings - Magazine style layout */
.pagesme .wp-block-heading {
  text-transform: uppercase; 
  letter-spacing: 0.15em; 
  font-size: 1rem;
  font-weight: 800;
  color: #888888;
  margin-top: 50px; 
  margin-bottom: 15px;
  display: block;
  width: 100%;
}

/* 5. Paragraphs - Wide line height for luxury feel */
.pagesme p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  hyphens: auto; 
  word-wrap: break-word; /* Prevents long raw URLs from breaking layout */
}

.pagesme .privacy-policy-tutorial {
  display: none;
}

.pagesme a {
  color: #005DAA; /* Rotary Blue */
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.pagesme a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 900px) {
  .pagesme {
    margin: 30px auto; 
    padding: 40px 50px; 
    width: auto;
  }
  
  .pagesme h1 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 600px) {
  body:has(.pagesme) {
    background-color: #ffffff;
  }

  .pagesme {
    margin: 0; 
    padding: 30px 20px; 
    box-shadow: none;
    border-radius: 0;
  }

  .pagesme h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .pagesme p {
    font-size: 1rem; 
    margin-bottom: 20px;
  }
}