/* Privacy Policy Template Styles for darrelsoundsnice.com */
/* Variables from theme (keep in sync with main theme) */
:root {
  --main-bg-color: #0f0f0f;
  --text-color: #ffffff;
  --accent-color: #002fed;
  --secondary-bg: #1a1a1a;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --border-color: rgba(255, 255, 255, 0.1);
}

/* Privacy Policy specific styles */
.privacy-header {
  max-width: 1200px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.last-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.privacy-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 5%;
}

/*Text styling*/
            h1, h2, h3, h4 {

                font-family: "Open Sans", sans-serif;
                color: #1f315d;
                margin-bottom: 0.5em;
                margin-top: 0px;
                font-weight: 400;
                margin-left: auto;
                margin-right: auto;
                text-align: left;
            }
            
            h1 {
                font-size: clamp(2.9rem, 3vw, 4.08rem);
                margin-top: 80px;
                margin-bottom: 50px;
            }
            
            h2 {
                font-size: clamp(2.5rem, 3vw, 3.2rem);
                margin-top: 0px;
            }
            
            h3 {
                font-size: clamp(2rem, 2.5vw, 2.5rem);
                margin-top: 0px;
            }
            
            h4 {
                font-size: clamp(1.5rem, 2vw, 1.9rem);
                margin-top: 30px;
                margin-bottom: 30px;
            }
            
            h5 {
                font-size: clamp(0.9rem, 1.5vw, 1.5rem);
                font-weight: 400;
                margin-bottom: 1.5em;
                margin-top: 0px;
            }
            
            h6 {
                font-size: clamp(0.7rem, 1.2vw, 1.2rem);
                font-weight: 400;
                font-family: "Open Sans", sans-serif;
                color: #1f315d;
                text-align: center;
                margin-bottom: 1.5em;
                margin-top: 0px;
            }
            
            p, ul, ol {
                font-family: "Open Sans", sans-serif;
                color: #353739;
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 1em;
                margin-top: 0px;

            }
        
.privacy-content ul, 
.privacy-content ol {
  font-family: "Open Sans", sans-serif;
  color: #1f315d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

.privacy-content li {
  font-family: "Open Sans", sans-serif;
  color: #353739;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 0px;
}

.privacy-content a {
  color: var(--accent-color);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .privacy-content {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .privacy-header,
  .last-updated {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  p, ul, ol {
    font-family: "Open Sans", sans-serif;
    color: #1f315d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1em;
    margin-top: 0px;
  }

  .privacy-content ul, 
  .privacy-content ol {
    font-family: "Open Sans", sans-serif;
    color: #1f315d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1em;
  }
  
  .privacy-content li {
    font-family: "Open Sans", sans-serif;
    color: #1f315d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1em;
    margin-top: 0px;
  }

  .privacy-content a {
    color: var(--accent-color);
    text-decoration: none;
  }

  .privacy-content a:hover {
    text-decoration: underline;
  }
}