/* ============================================================
   Privacy Page Styles
   ============================================================ */

/* Hero */
.privacy-hero {
	background-color: #164885;
	color: #ffffff;
	padding: 48px 0;
}

.privacy-hero__title {
	font-size: 36px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 8px;
}

.privacy-hero__date {
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
}

/* Content Layout */
.privacy-content {
	background: #ffffff;
	padding: 56px 0;
}

.privacy-container {
	max-width: 900px;
}

/* Sections */
.privacy-section {
	margin-bottom: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid #e7e7e7;
}

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

/* Headings */
.privacy-title {
	font-size: 26px;
	font-weight: bold;
	color: #164885;
	margin-bottom: 8px;
}

.privacy-promise {
	font-size: 18px;
	font-weight: bold;
	color: #2f98d4;
	margin-bottom: 16px;
}

.privacy-heading {
	font-size: 20px;
	font-weight: bold;
	color: #164885;
	margin-bottom: 16px;
	padding-top: 4px;
}

/* Body text */
.privacy-section p {
	color: #444444;
	margin-bottom: 16px;
	line-height: 1.7;
}

.privacy-section p:last-child {
	margin-bottom: 0;
}

.privacy-section a {
	color: #2f98d4;
}

/* Rights list */
.privacy-rights {
	list-style: none;
	margin: 20px 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.privacy-rights li {
	padding: 16px 20px;
	background: #f4f8fc;
	border-left: 4px solid #2f98d4;
	border-radius: 0 4px 4px 0;
	color: #444444;
	line-height: 1.6;
}

/* General list */
.privacy-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.privacy-list li {
	padding-left: 20px;
	position: relative;
	color: #444444;
	line-height: 1.7;
}

.privacy-list li::before {
	content: "›";
	position: absolute;
	left: 0;
	color: #2f98d4;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.5;
}

/* Tables */
.privacy-table-wrap {
	margin: 20px 0;
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.privacy-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 14px;
	background: #ffffff;
}

.privacy-table th,
.privacy-table td {
	width: 25%;
	word-wrap: break-word;
}

.privacy-table th {
	background: #164885;
	color: #ffffff;
	text-align: left;
	padding: 12px 16px;
	font-weight: bold;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: normal;
}

.privacy-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #e7e7e7;
	vertical-align: top;
	color: #444444;
	line-height: 1.6;
}

.privacy-table tr:last-child td {
	border-bottom: none;
}

.privacy-table tr:nth-child(even) td {
	background: #f9fafb;
}

/* Contact section */
.privacy-contact-grid {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
	margin: 24px 0;
	padding: 28px 32px;
	background: #f4f8fc;
	border-radius: 6px;
}

.privacy-contact-block h3 {
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #164885;
	margin-bottom: 8px;
}

.privacy-contact-block a,
.privacy-contact-block address {
	color: #444444;
	font-style: normal;
	line-height: 1.7;
	font-size: 15px;
}

.privacy-contact-block a {
	color: #2f98d4;
}

.privacy-updates {
	font-size: 14px;
	color: #777777;
	font-style: italic;
}

/* Responsive */
@media screen and (max-width: 700px) {
	.privacy-hero__title {
		font-size: 26px;
	}

	.privacy-contact-grid {
		flex-direction: column;
		gap: 24px;
		padding: 20px;
	}

	.privacy-table th,
	.privacy-table td {
		padding: 10px 12px;
	}
}
