/* Privacy Policy Enhanced Styling */
.privacy-nav {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-start;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #0d4a6b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 108, 159, 0.3);
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 108, 159, 0.4);
    background: linear-gradient(135deg, #0d4a6b 0%, var(--accent) 100%);
}

.back-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.back-button:hover .back-icon {
    transform: translateX(-2px);
}

.privacy-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #0d4a6b, var(--accent));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.header-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.privacy-content {
    line-height: 1.8;
    max-width: none;
}

.privacy-intro {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #bae6fd;
    position: relative;
    overflow: hidden;
}

.privacy-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), #0d4a6b);
    border-radius: 0 3px 3px 0;
}

.data-list {
    list-style: none;
}

.intro-text {
    font-size: 1.15rem;
    color: #1e40af;
    margin: 0;
    font-weight: 500;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

/* Flatten hover to avoid floating container feel */
.privacy-section:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.section-title {
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: '';
    width: 6px;
    height: 24px;
    background: linear-gradient(180deg, var(--accent), #0d4a6b);
    border-radius: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 1px;
}

.section-content {
    color: #374151;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.subsection {
    margin: 1rem 0;
    padding: 1rem 1rem 1rem 1.25rem;
    background: transparent;
    border-radius: 0;
    border-left: 3px solid #e5e7eb;
    position: relative;
}

.subsection-title {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subsection-title::before {
    content: '▶';
    color: var(--accent);
    font-size: 0.8rem;
}

.data-list,
.cookie-types,
.marketing-list,
.rights-list {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0.5rem 0 1rem;
    border-left: 0;
    box-shadow: none;
}

.data-list li,
.cookie-types li,
.marketing-list li,
.rights-list li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.data-list li:hover,
.cookie-types li:hover,
.marketing-list li:hover,
.rights-list li:hover {
    transform: translateX(2px);
}

.data-list li::before,
.cookie-types li::before,
.marketing-list li::before,
.rights-list li::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(18, 108, 159, 0.1);
}

.contact-link:hover {
    color: #0d4a6b;
    background: rgba(18, 108, 159, 0.2);
    transform: scale(1.05);
}

.last-updated {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #93c5fd;
    color: #1e40af;
    font-weight: 500;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}