/* Privacy Policy Page Styles */

.pp-wrapper {
    max-width: 820px;
    margin: 48px auto 60px;
    padding: 0 24px;
}

.pp-container {
    background: #fff;
    padding: 48px 52px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.pp-effective-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 36px;
    padding: 4px 12px;
    background: #f5f7fa;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.pp-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}

.pp-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pp-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 14px;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}

.pp-section p {
    margin: 0 0 14px;
    color: #555;
}

.pp-section ul {
    margin: 0 0 14px;
    padding-left: 0;
    list-style: none;
}

.pp-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pp-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4a90d9;
}

.pp-section ul li strong {
    color: #333;
}

.pp-section a {
    color: #4a90d9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.pp-section a:hover {
    border-bottom-color: #4a90d9;
}

/* Contact Card */
.pp-contact-card {
    margin-top: 16px;
    background: #f8f9fb;
    border-radius: 8px;
    padding: 20px 24px;
    border: 1px solid #eef0f4;
}

.pp-contact-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
}

.pp-contact-item:first-child {
    padding-top: 0;
}

.pp-contact-item:last-child {
    padding-bottom: 0;
}

.pp-contact-item + .pp-contact-item {
    border-top: 1px solid #e8eaee;
}

.pp-contact-label {
    font-weight: 600;
    color: #333;
    min-width: 60px;
    font-size: 0.9rem;
}

.pp-contact-item span:last-child {
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .pp-wrapper {
        margin: 24px auto 40px;
        padding: 0 16px;
    }

    .pp-container {
        padding: 28px 24px;
    }

    .pp-section h2 {
        font-size: 1.15rem;
    }

    .pp-contact-item {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .pp-container {
        padding: 24px 18px;
        font-size: 14px;
    }
}
