﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f7fc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
    line-height: 1.55;
    color: #1a2c3e;
    padding: 2rem 1rem;
}

/* main container */
.privacy-container {
    max-width: 1280px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;   
    overflow: hidden;
    transition: all 0.2s ease;
}

/* header section with gradient & modern style */
.policy-header {
    padding: 1rem 2rem;
    color: #333;
}

    .policy-header h1 {
        border-bottom: 1px solid #eef2f8;
        padding-bottom: 1.6rem;
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .policy-header .company-sub {
        font-size: 1rem;
        font-weight: 400;
        opacity: 0.85;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
        flex-wrap: wrap;
    }

    .policy-header .last-updated {
        background: rgba(255, 255, 255, 0.15);
        padding: 4px 12px;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: 500;
    }

/* main content */
.policy-content {
    padding: 2.5rem 2.5rem 3rem;
}

/* block styling */
.policy-section {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eef2f8;
    padding-bottom: 1rem;
}

    .policy-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .policy-section h2 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
        letter-spacing: -0.2px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .policy-section h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1e4a62;
        margin: 1.2rem 0 0.6rem 0;
    }

    .policy-section p, .policy-section li {
        font-size: 1rem;
        line-height: 1.6;
        color: #2c3f4f;
        margin-bottom: 1rem;
    }

    .policy-section strong {
        color: #475760;
        font-weight: 700;
    }

    .policy-section a {
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(31, 127, 140, 0.3);
        transition: all 0.2s;
    }

    .policy-section a {
        color: #0c286b;
        border-bottom-color: #0c286b;
    }

    .policy-section .ticket-link {
        color: #fff;
        border-bottom-color: #333;
    }

    /* lists */
    .policy-section ul, .policy-section ol {
        margin: 0.75rem 0 1rem 1.8rem;
    }

    .policy-section li {
        margin-bottom: 0.4rem;
    }

/* badge / note */
.gdpr-box {
    background: #66606021;
    border-left: 4px solid #333;
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    margin: 1.5rem 0;
}

.support-ticket {
    background: #fef7e0;
    border: 1px solid #ffe2b3;
    border-radius: 18px;
    padding: 1rem 1.5rem;
    font-family: monospace;
    word-break: break-all;
    font-size: 0.9rem;
    margin-top: 0.6rem;
    display: inline-block;
}

.link-card {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.8rem;
}

.policy-link {
    background: #f0f4f9;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.2s;
}

    .policy-link:hover {
        background: #e2e9f2;
    }

hr {
    margin: 1.2rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(to right, #e0e7ef, transparent);
}

/* quote / fine */
.small-note {
    font-size: 0.85rem;
    color: #5f6f7e;
    margin-top: 0.5rem;
}

/* responsive */
@media (max-width: 700px) {
    .policy-header {
        padding: 1.8rem 1.5rem;
    }

        .policy-header h1 {
            font-size: 1.7rem;
        }

    .policy-content {
        padding: 1.8rem 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.35rem;
    }
}

/* footer style */
.policy-footer {
    background: #fafcff;
    border-top: 1px solid #ecf2f9;
    padding: 1.5rem 2.5rem;
    font-size: 0.8rem;
    color: #5c6f87;
    text-align: center;
}

    .policy-footer a {
        color: #2c7da0;
        text-decoration: none;
    }

/* button-like support */
.ticket-link {
    background: #333;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: 0.2s;
    margin-top: 6px;
}

    .ticket-link:hover {
        background: #0c485e;
        color: white;
        border-bottom: none;
    }
