body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	background-color: #f9f9f9;
}

.container {
	background-color: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h1 {
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
	color: #1a1a1a;
}

h2 {
	margin-top: 30px;
	color: #2c3e50;
	font-size: 1.4rem;
	border-left: 4px solid #d4af37;
	/* Gold accent matching 'Teak' aesthetic */
	padding-left: 15px;
}

.meta-info {
	background: #f0f2f5;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 30px;
}

.meta-info p {
	margin: 5px 0;
	font-size: 0.9rem;
}

ul {
	padding-left: 20px;
}

li {
	margin-bottom: 8px;
}

a {
	color: #d4af37;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.sub-section {
	margin-bottom: 20px;
}

        .alert-box {
            background-color: #fff4e5;
            border-left: 5px solid #ffa000;
            padding: 20px;
            margin: 25px 0;
        }
        .alert-box h2 {
            margin-top: 0;
            color: #e65100;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-left: 0;
        }
        .bnpl-section {
            background-color: #f1f8e9;
            border: 1px solid #dcedc8;
            padding: 15px;
            border-radius: 4px;
            margin: 15px 0;
        }
        .bnpl-section h3 {
            color: #33691e;
            margin-top: 0;
        }

table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.9rem;
}
        th, td {
            border: 1px solid #eee;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f8f9fa;
            color: #2c3e50;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background-color: #fafafa;
        }
        .tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        .tag-essential { background: #e3f2fd; color: #0d47a1; }
        .tag-consent { background: #fff3e0; color: #e65100; }
        .disclaimer-box {
            background-color: #fff9f9;
            border: 1px solid #ffe6e6;
            padding: 20px;
            border-radius: 4px;
            margin: 20px 0;
        }
        .disclaimer-box strong {
            color: #c0392b;
        }

footer {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
	text-align: center;
}

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 25px;
	margin-bottom: 20px;
}

.footer-legal a {
	font-size: 0.85rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.footer-legal a:hover {
	color: var(--primary-accent);
	text-decoration: none;
}

#tag-ccpa-link {
	border-left: 1px solid var(--border-color);
	padding-left: 15px;
}

footer p {
	font-size: 0.8rem;
	color: #999;
	margin-top: 10px;
}

@media (max-width: 600px) {
	.footer-legal {
		flex-direction: column;
		gap: 12px;
	}

	#tag-ccpa-link {
		border-left: none;
		padding-left: 0;
	}

	.container {
		padding: 20px;
	}
}