/**
 * Privacy Policy Styles
 * Prefix: pl_ (privacy legal)
 * 
 * Comprehensive, professional styling for legal documentation
 */

/* ============================================
   MAIN SECTION
   ============================================ */
.pl_privacy_policy_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0 80px;
    min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */
.pl_policy_header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pl_header_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pl_header_badge i {
    font-size: 1.125rem;
}

.pl_policy_title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.pl_policy_subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.pl_last_updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.pl_last_updated i {
    color: #667eea;
}

/* ============================================
   QUICK NAVIGATION
   ============================================ */
.pl_quick_nav {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pl_nav_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pl_nav_title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

.pl_nav_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.pl_nav_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pl_nav_item i {
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.pl_nav_item:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pl_nav_item:hover i {
    color: white;
    transform: scale(1.1);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.pl_policy_content {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

/* ============================================
   SECTIONS
   ============================================ */
.pl_content_section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    scroll-margin-top: 100px; /* For anchor scrolling */
}

.pl_content_section:last-child {
    border-bottom: none;
}

.pl_section_number {
    position: absolute;
    top: -10px;
    left: -60px;
    font-size: 5rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 0;
}

.pl_section_title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pl_subsection {
    margin: 40px 0;
}

.pl_subsection_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pl_subsection_title i {
    font-size: 1.5rem;
    color: #667eea;
}

/* ============================================
   TEXT BLOCKS
   ============================================ */
.pl_text_block {
    margin-bottom: 25px;
    line-height: 1.8;
}

.pl_text_block p {
    font-size: 1.0625rem;
    color: #475569;
    margin-bottom: 15px;
}

.pl_text_block strong {
    color: #1a202c;
    font-weight: 600;
}

.pl_text_block h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #334155;
    margin: 25px 0 15px;
}

/* ============================================
   DATA LISTS
   ============================================ */
.pl_data_category {
    margin: 30px 0;
    padding: 25px;
    background: #f8fafc;
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.pl_data_category h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.pl_data_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl_data_list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.pl_data_list li::before {
    content: '\F285'; /* Bootstrap icon checkmark */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.125rem;
}

/* ============================================
   IMPORTANT BOXES
   ============================================ */
.pl_important_box {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid;
}

.pl_box_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.pl_box_content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pl_box_content p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.pl_box_content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.pl_box_content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Box Variants */
.pl_box_primary {
    background: #eff6ff;
    border-color: #3b82f6;
}

.pl_box_primary .pl_box_icon {
    background: #3b82f6;
    color: white;
}

.pl_box_primary h4 {
    color: #1e40af;
}

.pl_box_warning {
    background: #fffbeb;
    border-color: #f59e0b;
}

.pl_box_warning .pl_box_icon {
    background: #f59e0b;
    color: white;
}

.pl_box_warning h4 {
    color: #92400e;
}

.pl_box_info {
    background: #f0fdf4;
    border-color: #10b981;
}

.pl_box_info .pl_box_icon {
    background: #10b981;
    color: white;
}

.pl_box_info h4 {
    color: #065f46;
}

.pl_box_danger {
    background: #fef2f2;
    border-color: #ef4444;
}

.pl_box_danger .pl_box_icon {
    background: #ef4444;
    color: white;
}

.pl_box_danger h4 {
    color: #991b1b;
}

/* ============================================
   INFO GRID
   ============================================ */
.pl_info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pl_info_card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.pl_info_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.pl_card_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.75rem;
}

.pl_info_card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.pl_info_card p {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PURPOSE GRID
   ============================================ */
.pl_purpose_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pl_purpose_card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.pl_purpose_card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}

.pl_purpose_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 20px;
}

.pl_icon_primary { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.pl_icon_success { background: linear-gradient(135deg, #10b981, #059669); }
.pl_icon_warning { background: linear-gradient(135deg, #f59e0b, #d97706); }
.pl_icon_info { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.pl_icon_danger { background: linear-gradient(135deg, #ef4444, #dc2626); }
.pl_icon_purple { background: linear-gradient(135deg, #a855f7, #9333ea); }

.pl_purpose_card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.pl_purpose_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl_purpose_card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.9375rem;
    color: #475569;
}

.pl_purpose_card ul li::before {
    content: '\F26A'; /* Bootstrap checkmark-circle */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #667eea;
}

/* ============================================
   SHARING SECTION
   ============================================ */
.pl_sharing_section {
    margin: 30px 0;
}

.pl_sharing_item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.pl_sharing_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pl_sharing_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pl_sharing_header h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.pl_sharing_item p {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pl_partner_list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pl_partner_list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.pl_partner_list li::before {
    content: '\F4CA'; /* Bootstrap link icon */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.125rem;
}

.pl_example_box {
    background: white;
    border-left: 4px solid #10b981;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #065f46;
}

.pl_example_box strong {
    color: #047857;
}

/* ============================================
   SECURITY GRID
   ============================================ */
.pl_security_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pl_security_card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.pl_security_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.pl_security_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.pl_security_card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
margin-bottom: 12px;
}

.pl_security_card p {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   RIGHTS LIST
   ============================================ */
.pl_rights_list {
    margin: 30px 0;
}

.pl_right_item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pl_right_item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.pl_right_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pl_right_content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.pl_right_content p {
    font-size: 0.9375rem;
    color: #475569;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   EXERCISE RIGHTS BOX
   ============================================ */
.pl_exercise_rights_box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    padding: 35px;
    margin: 40px 0;
}

.pl_exercise_rights_box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pl_exercise_rights_box h4 i {
    font-size: 1.75rem;
}

.pl_contact_methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.pl_contact_method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 0.9375rem;
    backdrop-filter: blur(10px);
}

.pl_contact_method i {
    font-size: 1.5rem;
}

.pl_contact_method strong {
    display: block;
    margin-bottom: 3px;
}

.pl_response_time {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 0;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pl_response_time strong {
    font-size: 1.125rem;
}

/* ============================================
   COOKIE SECTION
   ============================================ */
.pl_cookie_types {
    margin: 30px 0;
}

.pl_cookie_type_card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.pl_cookie_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.pl_cookie_header i {
    font-size: 1.75rem;
    margin-right: 12px;
}

.pl_cookie_header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    display: flex;
    align-items: center;
}

.pl_cookie_badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pl_cookie_essential {
    border-left: 4px solid #10b981;
}

.pl_cookie_essential .pl_cookie_badge {
    background: #d1fae5;
    color: #065f46;
}

.pl_cookie_functional {
    border-left: 4px solid #3b82f6;
}

.pl_cookie_functional .pl_cookie_badge {
    background: #dbeafe;
    color: #1e40af;
}

.pl_cookie_analytics {
    border-left: 4px solid #f59e0b;
}

.pl_cookie_analytics .pl_cookie_badge {
    background: #fef3c7;
    color: #92400e;
}

.pl_cookie_type_card p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.7;
}

.pl_cookie_type_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl_cookie_type_card ul li {
    padding: 8px 0;
    font-size: 0.9375rem;
    color: #64748b;
    font-family: 'Courier New', monospace;
}

.pl_cookie_type_card code {
    background: #f1f5f9;
    color: #667eea;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* ============================================
   COOKIE CONTROL BOX
   ============================================ */
.pl_cookie_control_box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.pl_cookie_control_box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.pl_cookie_control_box p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
}

.pl_browser_links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.pl_browser_links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pl_browser_links a:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pl_browser_links a i {
    font-size: 1.25rem;
}

.pl_cookie_warning {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 0;
    font-size: 0.9375rem;
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pl_cookie_warning i {
    font-size: 1.25rem;
    color: #ef4444;
}

/* ============================================
   RETENTION TABLE
   ============================================ */
.pl_retention_table {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}

.pl_retention_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e2e8f0;
}

.pl_retention_row:last-child {
    border-bottom: none;
}

.pl_retention_row:nth-child(even) {
    background: #f8fafc;
}

.pl_retention_type {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

.pl_retention_period {
    font-size: 0.9375rem;
    color: #667eea;
    font-weight: 700;
    padding: 6px 14px;
    background: #eff6ff;
    border-radius: 50px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.pl_contact_section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.pl_contact_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pl_contact_title i {
    font-size: 2rem;
    color: #667eea;
}

.pl_contact_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.pl_contact_card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.pl_contact_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.pl_contact_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.75rem;
}

.pl_contact_card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.pl_contact_card p {
    font-size: 1.0625rem;
    color: #1a202c;
    font-weight: 600;
    margin: 0;
}

.pl_contact_card a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pl_contact_card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.pl_response_commitment {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 25px;
    text-align: left;
}

.pl_response_commitment i {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.pl_response_commitment p {
    margin: 0;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

/* ============================================
   ACKNOWLEDGMENT BOX
   ============================================ */
.pl_acknowledgment_box {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 16px;
    padding: 35px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.pl_ack_icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.pl_ack_content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pl_ack_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl_ack_content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.pl_ack_content ul li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

/* ============================================
   RELATED DOCUMENTS
   ============================================ */
.pl_related_docs {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pl_related_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 30px;
}

.pl_doc_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pl_doc_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pl_doc_card:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.pl_doc_card i {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.pl_doc_card:hover i {
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .pl_section_number {
        font-size: 4rem;
        left: -50px;
    }
}

@media (max-width: 991px) {
    .pl_policy_content {
        padding: 40px 30px;
    }

    .pl_section_number {
        position: static;
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .pl_section_title {
        font-size: 2rem;
    }

    .pl_nav_grid {
        grid-template-columns: 1fr;
    }

    .pl_purpose_grid {
        grid-template-columns: 1fr;
    }

    .pl_security_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .pl_privacy_policy_section {
        padding: 40px 0 60px;
    }

    .pl_policy_header {
        padding: 30px 15px;
    }

    .pl_policy_title {
        font-size: 2.5rem;
    }

    .pl_policy_subtitle {
        font-size: 1.125rem;
    }

    .pl_policy_content {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .pl_quick_nav {
        padding: 20px;
    }

    .pl_section_title {
        font-size: 1.75rem;
    }

    .pl_subsection_title {
        font-size: 1.5rem;
    }

    .pl_important_box {
        flex-direction: column;
        align-items: flex-start;
    }

    .pl_right_item {
        flex-direction: column;
    }

    .pl_acknowledgment_box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pl_contact_methods {
        grid-template-columns: 1fr;
    }

    .pl_exercise_rights_box {
        padding: 25px 20px;
    }

    .pl_cookie_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pl_retention_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pl_browser_links {
        flex-direction: column;
    }

    .pl_browser_links a {
        justify-content: center;
    }

    .pl_doc_grid {
        grid-template-columns: 1fr;
    }

    .pl_contact_section {
        padding: 30px 20px;
    }

    .pl_contact_title {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .pl_response_commitment {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .pl_policy_title {
        font-size: 2rem;
    }

    .pl_section_number {
        font-size: 2.5rem;
    }

    .pl_info_grid {
        grid-template-columns: 1fr;
    }

    .pl_security_grid {
        grid-template-columns: 1fr;
    }

    .pl_contact_grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .pl_privacy_policy_section {
        background: white;
    }

    .pl_quick_nav,
    .pl_related_docs {
        display: none;
    }

    .pl_policy_header {
        box-shadow: none;
        border-bottom: 2px solid #000;
    }

    .pl_policy_content {
        box-shadow: none;
    }

    .pl_content_section {
        page-break-inside: avoid;
    }

    .pl_section_number {
        color: #ccc;
    }

    a {
        text-decoration: underline;
        color: #000;
    }

    .pl_important_box,
    .pl_acknowledgment_box,
    .pl_exercise_rights_box {
        border: 2px solid #000;
        box-shadow: none;
    }
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   SELECTION STYLES
   ============================================ */
::selection {
    background: #667eea;
    color: white;
}

::-moz-selection {
    background: #667eea;
    color: white;
}