/**
 * Policy Pages Styles (Privacy Policy, Cookie Policy, etc.)
 * Scoped to .privacy-policy-content
 * 
 * @package RinnoTools
 */

/* Main content container */
.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Summary box */
.privacy-policy-summary {
    background: #f7f8fa;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid #3d464d;
}

.privacy-policy-summary h3 {
    margin-top: 0;
    color: #3d464d;
}

/* Headings */
.privacy-policy-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #3d464d;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ebebeb;
}

.privacy-policy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #3d464d;
}

/* Paragraphs */
.privacy-policy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Lists */
.privacy-policy-content ul,
.privacy-policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-policy-content ul li,
.privacy-policy-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #6c757d;
}

.privacy-policy-content ul li strong,
.privacy-policy-content ol li strong {
    color: #3d464d;
    font-weight: 600;
}

/* Links */
.privacy-policy-content a {
    color: #3d464d;
    text-decoration: underline;
    transition: color 0.2s;
}

.privacy-policy-content a:hover {
    color: #ffd333;
    text-decoration: none;
}

/* Last update section */
.privacy-policy-content h2:last-of-type {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 2px solid #ebebeb;
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 15px;
    }
    
    .privacy-policy-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-policy-content h3 {
        font-size: 1.1rem;
    }
    
    .privacy-policy-summary {
        padding: 15px;
    }
}


