/* Privacy Policy Styling */
.product-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #c3c0c0;
}

/* Headings */
.product-hero h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #007bff;
    counter-increment: section;
}

.product-hero h2:first-of-type {
    margin-top: 0;
}

.product-hero h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #007bff;
}

/* Paragraphs */
.product-hero p {
    margin-bottom: 16px;
    color: #555;
    text-align: justify;
}

/* Strong/Bold text */
.product-hero strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Lists */
.product-hero ul {
    margin: 20px 0;
    padding-left: 30px;
}

.product-hero li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.product-hero li strong {
    color: #007bff;
}

/* Line breaks in paragraphs */
.product-hero p br {
    line-height: 2;
}

/* Horizontal rule */
.product-hero hr {
    margin: 50px 0 30px;
    border: none;
    border-top: 2px solid #e0e0e0;
}

/* Last updated text */
.product-hero em {
    color: #777;
    font-size: 0.9rem;
}

/* Contact information blocks */
.product-hero p:has(strong:first-child) {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin: 20px 0;
}

/* Subsections styling */
.product-hero h3 + ul {
    margin-top: 15px;
}

.product-hero h3 + p {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        padding: 30px 15px;
    }
    
    .product-hero h2 {
        font-size: 1.5rem;
        margin-top: 35px;
    }
    
    .product-hero h3 {
        font-size: 1.15rem;
        margin-top: 25px;
    }
    
    .product-hero ul {
        padding-left: 20px;
    }
    
    .product-hero p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 20px 10px;
    }
    
    .product-hero h2 {
        font-size: 1.3rem;
    }
    
    .product-hero h3 {
        font-size: 1.1rem;
        padding-left: 10px;
    }
}

/* Print styles */
@media print {
    .product-hero {
        max-width: 100%;
        padding: 0;
    }
    
    .product-hero h2 {
        page-break-after: avoid;
    }
    
    .product-hero ul {
        page-break-inside: avoid;
    }
}

/* Optional: Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Optional: Add focus styles for accessibility */
.product-hero a:focus,
.product-hero button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}