/* ==========================
Privacy Policy Page Styles
========================== */

.privacy-header,
.privacy-content {
	background: #ffffff;
	padding: 3rem 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	margin-bottom: 3rem;
}

.privacy-header {
	text-align: center;
}

.privacy-header h1 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #111827;
	margin-bottom: 1rem;
}

.privacy-header p {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: #374151;
}

.privacy-content {
	max-width: 900px;
	margin: 0 auto;
}

.privacy-content h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 0.75rem;
}

.privacy-content p {
	font-size: 1rem;
	color: #4b5563;
	margin-bottom: 1.5rem;
}

.privacy-content ul {
	list-style: disc;
	padding-left: 1.5rem;
	color: #4b5563;
	margin-bottom: 1.5rem;
}

.privacy-content li {
	margin-bottom: 0.5rem;
}

.privacy-content a {
	color: #1d4ed8;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.privacy-content a:hover {
	color: #2563eb;
}

/* Responsive */
/* =======================
   PRIVACY POLICY RESPONSIVE
======================= */

/* Large screens / smaller desktops */
@media (max-width: 1024px) {
    .privacy-header,
    .privacy-content {
        padding: 2.5rem 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-header p,
    .privacy-content p {
        font-size: 1rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

/* Tablets / medium screens */
@media (max-width: 768px) {
    .privacy-header,
    .privacy-content {
        padding: 2rem 1.25rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-header p,
    .privacy-content p {
        font-size: 0.95rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-content ul {
        padding-left: 1.25rem;
    }
}

/* Small phones / very small screens */
@media (max-width: 480px) {
    .privacy-header,
    .privacy-content {
        padding: 1.5rem 1rem;
    }

    .privacy-header h1 {
        font-size: 1.6rem;
    }

    .privacy-header p,
    .privacy-content p {
        font-size: 0.9rem;
    }

    .privacy-content h2 {
        font-size: 1.2rem;
    }

    .privacy-content ul {
        padding-left: 1rem;
    }

    .privacy-content li {
        font-size: 0.85rem;
    }
}
