/* privacy-policy.css — page-specific styles for Privacy Policy */

/* === CSS VARIABLES (Consistent with Groups Page) === */
        

        

        

        

        

        /* === HERO SECTION === */
        .privacy-hero {
            position: relative;
            padding: 230px 0 70px;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(42, 39, 36, 0.95) 100%), url('https://stjosephclarkston.com/wp-content/uploads/2026/01/Welcome-View-from-LHS-scal.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            overflow: hidden;
            margin-top: -55px;
        }

        .privacy-hero .hero-container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .privacy-hero h1 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
        }

        .privacy-hero 

        /* === LEFT SIDEBAR NAVIGATION === */
        

        

        

        .sidebar-nav-list 

        

        

        /* === MAIN CONTENT AREA === */
        

        .privacy-section {
            background: var(--white);
            border-radius: 0;
            padding: 40px 45px;
            box-shadow: var(--shadow-medium);
            margin-bottom: 40px;
        }

        .privacy-section:last-child {
            margin-bottom: 0;
        }

        

        

        

        .policy-block {
            margin-bottom: 35px;
        }

        .policy-block:last-child {
            margin-bottom: 0;
        }

        .policy-block h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .policy-block h3 i {
            color: var(--accent);
            font-size: 1.3rem;
        }

        .policy-block 

        .policy-block ul, .policy-block ol {
            margin: 15px 0 15px 25px;
            color: var(--text-grey);
        }

        .policy-block li {
            margin-bottom: 8px;
        }

        .contact-card {
            background: var(--accent-lighter);
            border-radius: 0;
            padding: 25px;
            margin-top: 25px;
            border-left: 4px solid var(--accent);
        }

        .contact-card 

        .contact-card strong {
            color: var(--primary);
        }

        .effective-date {
            background: var(--light-grey);
            padding: 15px 20px;
            border-radius: 0;
            margin-bottom: 30px;
            font-weight: 500;
            color: var(--primary);
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
        }

        /* === UTILITY CLASSES === */
        

        

        

        /* === RESPONSIVE DESIGN === */
        @media (max-width: 1100px) {
            
            
            
            
            
            
            .privacy-section {
                padding: 30px 25px;
            }
        }

        @media (max-width: 768px) {
            
            
            .privacy-hero {
                padding: 180px 0 50px;
            }
            
            .privacy-hero h1 {
                font-size: 2.2rem;
            }
            
            .privacy-hero 
            
            .privacy-section {
                padding: 25px 20px;
            }
            
            .policy-block h3 {
                font-size: 1.2rem;
            }
            
            
        }

        @media (max-width: 576px) {
            .privacy-section {
                padding: 20px 15px;
            }
            
            .policy-block ul, .policy-block ol {
                margin-left: 18px;
            }
        }

        /* === !important CSS OVERRIDES (Matching groups page standard) === */
        /* Fix: Remove any unwanted pseudo-elements from lists */
        .sidebar-nav-list li::before,
        .policy-block ul li::before,
        .policy-block ol li::before,
        .contact-card ul li::before {
            content: none !important;
            display: none !important;
        }

        /* Ensure consistent list styling */
        .policy-block 

        .policy-block ol {
            list-style-type: decimal !important;
        }

        /* Force proper spacing and remove any accidental checkmarks */
        

        /* Override any global list styles that might add unwanted markers */
        ul, ol {
            padding-left: 0 !important;
        }

        .policy-block ul, 
        .policy-block ol {
            padding-left: 1.5rem !important;
        }