/* Privacy Policy Section Styles */
.sbr-privacy-policy {
   background: url('/img/homepage-bg.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   color: white;
   position: relative;
   overflow: hidden;
   padding: 12rem 2rem 6rem;
}

.sbr-privacy-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0.7);
   z-index: 1;
}

.sbr-privacy-policy .sbr-container {
   position: relative;
   z-index: 2;
}

.sbr-privacy-content {
   background: rgba(255, 255, 255, 0.95);
   border-radius: 15px;
   padding: 4rem 3rem;
   backdrop-filter: blur(10px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   max-width: 900px;
   margin: 0 auto;
   color: #333;
}

.sbr-privacy-policy h1 {
   font-size: 3rem;
   font-weight: 700;
   color: #333;
   text-align: center;
   position: relative;
   display: inline-block;
   margin: 0 0 3rem 0;
   width: 100%;
}

.sbr-privacy-policy h1::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 4px;
   background: #6acc5b;
}

.sbr-privacy-text h2 {
   font-size: 1.75rem;
   font-weight: 700;
   color: #333;
   margin: 2.5rem 0 1rem 0;
   position: relative;
   display: inline-block;
}

.sbr-privacy-text h2::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 40px;
   height: 2px;
   background: #6acc5b;
}

.sbr-privacy-text h2:first-child {
   margin-top: 0;
}

.sbr-privacy-text p {
   font-size: 1.1rem;
   color: #666;
   line-height: 1.7;
   margin-bottom: 1.5rem;
   font-family: 'Gabarito', sans-serif;
}

.sbr-privacy-updated {
   margin-top: 3rem;
   padding-top: 2rem;
   border-top: 1px solid #e0e0e0;
   font-size: 1rem;
   color: #888;
   text-align: center;
}


/* Privacy Policy Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
   .sbr-privacy-policy {
       padding: 10rem 1.5rem 5rem;
   }
   
   .sbr-privacy-content {
       padding: 3rem 2.5rem;
       max-width: 800px;
   }
   
   .sbr-privacy-policy h1 {
       font-size: 2.5rem;
       margin-bottom: 2.5rem;
   }
   
   .sbr-privacy-text h2 {
       font-size: 1.5rem;
       margin: 2rem 0 0.75rem 0;
   }
   
   .sbr-privacy-text p {
       font-size: 1rem;
       margin-bottom: 1.25rem;
   }
   
   .sbr-privacy-updated {
       margin-top: 2.5rem;
       padding-top: 1.5rem;
   }
}

/* Mobile Styles */
@media (max-width: 768px) {
   .sbr-privacy-policy {
       padding: 9rem 1rem 4rem;
   }
   
   .sbr-privacy-content {
       padding: 2.5rem 1.5rem;
       border-radius: 10px;
   }
   
   .sbr-privacy-policy h1 {
       font-size: 2rem;
       margin-bottom: 2rem;
   }
   
   .sbr-privacy-text h2 {
       font-size: 1.375rem;
       margin: 1.75rem 0 0.75rem 0;
   }
   
   .sbr-privacy-text p {
       font-size: 0.95rem;
       line-height: 1.6;
       margin-bottom: 1rem;
   }
   
   .sbr-privacy-updated {
       margin-top: 2rem;
       padding-top: 1.25rem;
       font-size: 0.9rem;
   }
}