/* Cookie Policy Page Styles - Unified Modern Design */

.cookie-policy-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    color: #333;
    position: relative;
}

.cookie-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #fd79a8);
    border-radius: 16px 16px 0 0;
}

/* Typography */
.cookie-title {
    color: #2d3436;
    text-align: center;
    border-bottom: 4px solid #6c5ce7;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cookie-content h2 {
    color: #6c5ce7;
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 6px solid #a29bfe;
    padding-left: 20px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-content h3 {
    color: #5f3dc4;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 8px;
}

.cookie-content h4 {
    color: #495057;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* Company Information */
.company-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
}

.company-info p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.company-info strong {
    color: #f8f9fa;
    font-weight: 600;
}

.company-info a {
    color: white !important;
    text-decoration: none;
}

.company-info a:hover {
    color: #f8f9fa !important;
    text-decoration: underline;
}

/* Cookie Introduction */
.cookie-intro {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 6px solid #e17055;
    color: #2d3436;
}

.cookie-intro p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.cookie-intro strong {
    color: #d63031;
}

/* Sections */
.cookie-section {
    margin: 40px 0;
    padding: 25px 0;
}

.cookie-section p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
}

/* Remove default list styling */
.cookie-content ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.cookie-content li {
    list-style: none !important;
}

/* Technology List */
.tech-list {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #6c5ce7;
    list-style: none !important;
}

.tech-list li {
    margin-bottom: 10px;
    padding-left: 10px;
    list-style: none !important;
}

.tech-list strong {
    color: #6c5ce7;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.cookie-type-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.cookie-type-item h3 {
    color: #495057;
    margin-bottom: 15px;
    border-bottom: none;
    font-size: 16px;
}

.cookie-type-item ul {
    margin: 10px 0;
    padding-left: 20px;
}

.cookie-type-item li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Cookie Categories */
.cookie-categories {
    margin: 30px 0;
}

.cookie-category {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin: 25px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: #6c5ce7;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.1);
}

.cookie-category h3 {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-category-content {
    padding: 25px;
}

.cookie-category-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.cookie-category-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.cookie-category-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}

.cookie-category-content li::marker {
    color: #6c5ce7;
}

.cookie-note {
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    margin-top: 15px;
    font-style: italic;
}

/* Cookie Details Tables */
.cookie-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-details-table thead {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.cookie-details-table th,
.cookie-details-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f1f3f4;
}

.cookie-details-table th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-details-table tbody tr:hover {
    background: #f8f9fa;
}

.cookie-details-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-details-table td {
    font-size: 14px;
    color: #495057;
}

.cookie-details-table td:first-child {
    font-weight: 600;
    color: #2d3436;
    font-family: 'Consolas', 'Monaco', monospace;
    background: rgba(108, 92, 231, 0.05);
}

/* Services List */
.services-list {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid #c3e6cb;
}

.services-list > li {
    margin-bottom: 15px;
    font-weight: 600;
    color: #155724;
}

.services-list ul {
    margin-top: 10px;
    font-weight: normal;
    color: #495057;
}

.services-list ul li {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    margin: 5px 0;
}

/* Advertising Platforms */
.advertising-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.advertising-platforms li {
    background: #ffe8e8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    list-style: none;
}

.advertising-platforms strong {
    color: #c92a2a;
    display: block;
    margin-bottom: 5px;
}

/* Purposes Grid */
.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.purpose-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #6c5ce7;
}

.purpose-item h4 {
    color: #2d3436;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.purpose-item p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Cookie Management */
.cookie-management {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #e9ecef;
    text-align: center;
}

/* Cookie Status Container */
.clp-cookie-consent-status {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #c3e6cb;
    text-align: center;
}

/* Cookie Management Button */
.cookie-manage-button,
.clp-cookie-manage-btn {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.4;
}

.cookie-manage-button:hover,
.clp-cookie-manage-btn:hover {
    background: linear-gradient(135deg, #5f3dc4 0%, #9c88ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.cookie-manage-button:active,
.clp-cookie-manage-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.2);
}

.cookie-manage-button:focus,
.clp-cookie-manage-btn:focus {
    outline: 2px solid #6c5ce7;
    outline-offset: 2px;
}

.cookie-management h3 {
    color: #2d3436;
    border-bottom: 2px solid #6c5ce7;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Browser Instructions Grid - Modern Card Design */
.browser-instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.browser-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 0;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.browser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #fd79a8);
}

.browser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
    border-color: #6c5ce7;
}

.browser-header {
    padding: 25px 25px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.browser-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.browser-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    letter-spacing: 0.5px;
}

.browser-steps {
    padding: 15px 25px 25px;
}

.browser-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step-counter;
}

.browser-steps ol li {
    counter-increment: step-counter;
    position: relative;
    padding: 12px 0 12px 50px;
    margin-bottom: 8px;
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.browser-steps ol li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.browser-steps ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

/* Browser-specific color themes */
.browser-card[data-browser="Chrome"] .browser-icon,
.browser-card[data-browser="Chrome"] .browser-steps ol li::before {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.browser-card[data-browser="Firefox"] .browser-icon,
.browser-card[data-browser="Firefox"] .browser-steps ol li::before {
    background: linear-gradient(135deg, #ff9500 0%, #ff6611 100%);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.browser-card[data-browser="Safari"] .browser-icon,
.browser-card[data-browser="Safari"] .browser-steps ol li::before {
    background: linear-gradient(135deg, #00d4aa 0%, #007cf0 100%);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.browser-card[data-browser="Edge"] .browser-icon,
.browser-card[data-browser="Edge"] .browser-steps ol li::before {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
}

.browser-card[data-browser="Opera"] .browser-icon,
.browser-card[data-browser="Opera"] .browser-steps ol li::before {
    background: linear-gradient(135deg, #ff1b2d 0%, #a91b60 100%);
    box-shadow: 0 4px 15px rgba(255, 27, 45, 0.3);
}

/* Opt-out Links */
.opt-out-links {
    background: #d4edda;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #c3e6cb;
}

.opt-out-links li {
    margin-bottom: 10px;
}

.opt-out-links a {
    color: #155724;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.opt-out-links a:hover {
    color: #0c5a1c;
    border-bottom-color: #28a745;
}

/* Important Information */
.important-info {
    margin: 30px 0;
}

.info-block {
    margin: 25px 0;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid;
}

.info-block.warning {
    background: #fff3cd;
    border-left-color: #ffc107;
    color: #856404;
}

.info-block.security {
    background: #d1ecf1;
    border-left-color: #17a2b8;
    color: #0c5460;
}

.info-block.retention {
    background: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.info-block h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.info-block ul {
    margin: 15px 0;
    padding-left: 25px;
}

.info-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Third Party Services */
.third-parties {
    margin: 25px 0;
}

.third-parties h4 {
    color: #6c5ce7;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 8px;
}

.third-parties ul {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid #dee2e6;
    border-left: 4px solid #6c5ce7;
}

.third-parties li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #495057;
}

.third-parties strong {
    color: #2d3436;
    font-weight: 600;
}

/* Contact Information */
.contact-info {
    background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-details strong {
    color: #fff;
    font-weight: 600;
}

/* Current Consent Status */
.current-consent-status {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.current-consent-status h3 {
    color: white;
    margin-bottom: 20px;
    border-bottom: none;
    font-size: 22px;
    border-left: none;
    padding-left: 0;
}

.current-consent-status p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Date Updated */
.date-updated {
    text-align: right;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 3px solid #e9ecef;
}

.date-updated p {
    color: #6c757d;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cookie-container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .cookie-content {
        padding: 40px 30px;
    }
    
    .purposes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cookie-policy-wrapper {
        padding: 20px 0;
    }
    
    .cookie-container {
        padding: 0 10px;
    }
    
    .cookie-content {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .cookie-title {
        font-size: 24px;
        line-height: 1.3;
        padding-bottom: 15px;
    }
    
    .cookie-content h2 {
        font-size: 20px;
        margin-top: 30px;
        padding-left: 15px;
        border-left: 4px solid #a29bfe;
    }
    
    .cookie-content h3 {
        font-size: 16px;
    }
    
    .company-info,
    .cookie-intro,
    .cookie-management,
    .important-info,
    .contact-info,
    .current-consent-status,
    .clp-cookie-consent-status {
        padding: 20px;
        margin: 20px 0;
    }
    
    .cookie-manage-button,
    .clp-cookie-manage-btn {
        font-size: 14px;
        padding: 10px 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        min-width: 0;
    }
    
    .cookie-category-content {
        padding: 20px;
    }
    
    .purposes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .purpose-item {
        padding: 20px;
    }
    
    .browser-instructions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .browser-card {
        margin-bottom: 15px;
    }
    
    .browser-header {
        padding: 20px 20px 10px;
        gap: 12px;
    }
    
    .browser-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .browser-title {
        font-size: 16px;
    }
    
    .browser-steps {
        padding: 10px 20px 20px;
    }
    
    .browser-steps ol li {
        padding: 10px 0 10px 45px;
        font-size: 13px;
    }
    
    .browser-steps ol li::before {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .advertising-platforms {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cookie-container {
        padding: 0 5px;
    }
    
    .cookie-content {
        padding: 20px 10px;
    }
    
    .cookie-title {
        font-size: 20px;
        text-align: left;
    }
    
    .cookie-content h2 {
        font-size: 18px;
        line-height: 1.4;
        padding-left: 10px;
        border-left: 3px solid #a29bfe;
    }
    
    .company-info,
    .cookie-intro,
    .cookie-management,
    .important-info,
    .contact-info,
    .current-consent-status,
    .clp-cookie-consent-status {
        padding: 15px;
    }
    
    .cookie-manage-button,
    .clp-cookie-manage-btn {
        font-size: 13px;
        padding: 8px 16px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .cookie-category h3 {
        padding: 15px;
        font-size: 16px;
    }
    
    .cookie-category-content {
        padding: 15px;
    }
    
    .purpose-item h4 {
        font-size: 16px;
    }
    
    .date-updated {
        text-align: center;
    }
    
    .browser-instructions-grid {
        gap: 15px;
    }
    
    .browser-card:hover {
        transform: translateY(-4px);
    }
    
    .browser-header {
        padding: 15px 15px 8px;
        gap: 10px;
    }
    
    .browser-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .browser-title {
        font-size: 15px;
    }
    
    .browser-steps {
        padding: 8px 15px 15px;
    }
    
    .browser-steps ol li {
        padding: 8px 0 8px 40px;
        font-size: 12px;
    }
    
    .browser-steps ol li::before {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
}

/* Print Styles */
@media print {
    .cookie-policy-wrapper {
        background: white;
        padding: 0;
    }
    
    .cookie-content {
        box-shadow: none;
        padding: 20px 0;
    }
    
    .cookie-content::before {
        display: none;
    }
    
    .cookie-title,
    .cookie-content h2,
    .cookie-content h3,
    .cookie-content h4 {
        color: black !important;
    }
    
    .company-info,
    .cookie-intro,
    .cookie-management,
    .important-info,
    .contact-info,
    .current-consent-status {
        border: 1px solid #ccc;
        background: white !important;
        color: black !important;
        break-inside: avoid;
    }
    
    .cookie-category {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .cookie-category h3 {
        background: #f0f0f0 !important;
        color: black !important;
    }
    
    .purposes-grid,
    .browser-instructions-grid,
    .third-party-services {
        break-inside: avoid;
    }
    
    .browser-card {
        border: 1px solid #ccc;
        break-inside: avoid;
        box-shadow: none !important;
    }
    
    .browser-card::before {
        display: none;
    }
    
    .browser-icon,
    .browser-steps ol li::before {
        background: #f0f0f0 !important;
        color: black !important;
        box-shadow: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .purpose-item:hover {
        transform: none;
    }
}

/* Focus styles for accessibility */
.cookie-content:focus,
.cookie-content h2:focus,
.cookie-content h3:focus {
    outline: 2px solid #6c5ce7;
    outline-offset: 2px;
}

.cookie-content a:focus {
    outline: 2px solid #6c5ce7;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Legal pages links styling */
.legal-pages-links {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #e9ecef;
}

.legal-pages-links h3 {
    color: #6c5ce7;
    margin-bottom: 20px;
    border-left: 4px solid #a29bfe;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 600;
}

.legal-pages-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-pages-links li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-pages-links li::before {
    content: "📄";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.legal-pages-links a {
    color: #6c5ce7 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

.legal-pages-links a:hover {
    color: #5f3dc4 !important;
    border-bottom-color: #5f3dc4;
}

/* Incognito Mode Instructions */
.incognito-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #e9ecef;
}

.incognito-info,
.incognito-shortcuts,
.incognito-note {
    margin-bottom: 25px;
}

.incognito-info h4,
.incognito-shortcuts h4 {
    color: #6c5ce7;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 8px;
}

.incognito-benefits,
.shortcut-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.incognito-benefits li,
.shortcut-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.incognito-benefits li::before {
    content: "🔒";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.shortcut-list li::before {
    content: "⌨️";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}

.incognito-note {
    background: linear-gradient(135deg, #fff3cd 0%, #fef7e0 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-bottom: 0;
}

.incognito-note p {
    margin: 0;
    color: #856404;
    font-size: 15px;
    line-height: 1.6;
}

/* Cookie Tables Responsive Design */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table tbody tr:hover {
    background-color: #f8f9fa;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile responsive tables */
@media (max-width: 768px) {
    .cookie-table,
    .cookie-details-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .cookie-table thead,
    .cookie-table tbody,
    .cookie-table th,
    .cookie-table td,
    .cookie-table tr,
    .cookie-details-table thead,
    .cookie-details-table tbody,
    .cookie-details-table th,
    .cookie-details-table td,
    .cookie-details-table tr {
        display: block;
    }
    
    .cookie-table thead tr,
    .cookie-details-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .cookie-table tr,
    .cookie-details-table tr {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .cookie-table td,
    .cookie-details-table td {
        border: none;
        padding: 8px 0;
        position: relative;
        padding-left: 120px;
        white-space: normal;
        background: transparent !important;
        font-family: inherit !important;
    }
    
    .cookie-table td:before,
    .cookie-details-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 8px;
        width: 110px;
        font-weight: 600;
        color: #6c5ce7;
        text-transform: uppercase;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-table td {
        padding-left: 100px;
    }
    
    .cookie-table td:before {
        width: 90px;
        font-size: 11px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-content {
        border: 2px solid #000;
    }
    
    .cookie-content h2 {
        border-left-color: #000;
    }
    
    .company-info,
    .cookie-intro,
    .cookie-management,
    .important-info,
    .contact-info,
    .current-consent-status {
        border: 2px solid #000;
    }
    
    .cookie-category {
        border: 2px solid #000;
    }
    
    .cookie-table {
        border: 2px solid #000;
    }
    
    .cookie-table th {
        background: #000 !important;
        color: white !important;
    }
}

/* Light theme always - forced light theme for all devices */
@media (prefers-color-scheme: dark) {
    .cookie-policy-wrapper {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    }
    
    .cookie-content {
        background: white !important;
        color: #333 !important;
    }
    
    .cookie-title {
        color: #2d3436 !important;
        border-bottom-color: #6c5ce7 !important;
    }
    
    .cookie-content h2 {
        color: #6c5ce7 !important;
        border-left-color: #a29bfe !important;
    }
    
    .cookie-content h3,
    .cookie-content h4 {
        color: #5f3dc4 !important;
    }
    
    .cookie-category {
        background: #ffffff !important;
        border-color: #e9ecef !important;
        color: #333 !important;
    }
    
    .purpose-item,
    .third-parties ul {
        background: #f8f9fa !important;
        border-color: #dee2e6 !important;
        color: #495057 !important;
    }
    
    .browser-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border-color: #e9ecef !important;
        color: #333 !important;
    }
    
    .browser-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    }
    
    .browser-title {
        color: #2d3436 !important;
    }
    
    .browser-steps ol li {
        color: #495057 !important;
    }
}