/* ========================================
   JaktLicens – Policy Pages CSS
   ======================================== */

/* Hero */
.policy-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.policy-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 15px;
}

.policy-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Content */
.policy-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
.policy-wrapper h2 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
}

.policy-wrapper h2:first-child {
    margin-top: 0;
}

.policy-wrapper h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-wrapper h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.policy-wrapper p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-wrapper ul,
.policy-wrapper ol {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-wrapper li {
    margin-bottom: 10px;
}

.policy-wrapper a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-wrapper a:hover {
    color: var(--accent-gold-light);
}

/* Info boxes */
.policy-wrapper blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: normal;
}

.policy-wrapper blockquote p {
    margin-bottom: 0;
    color: #444;
}

/* Tables */
.policy-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.policy-wrapper th,
.policy-wrapper td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.policy-wrapper th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-dark);
}

.policy-wrapper tr:hover td {
    background: rgba(245, 247, 245, 0.5);
}

/* Contact info box */
.policy-contact {
    background: var(--bg-light);
    padding: 30px;
    margin-top: 50px;
    border-radius: 0;
}

.policy-contact h3 {
    margin-top: 0;
    color: var(--primary-dark);
}

.policy-contact p {
    margin-bottom: 10px;
}

.policy-contact a {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .policy-hero {
        padding: 120px 0 50px;
    }

    .policy-content {
        padding: 50px 0;
    }

    .policy-wrapper h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    .policy-wrapper h3 {
        font-size: 1.2rem;
    }

    .policy-wrapper blockquote {
        padding: 15px 20px;
    }
}
