@charset "UTF-8";

/* Disclaimer Banner */
.disclaimer-banner {
	background: #fff3cd;
	border-bottom: 1px solid #ffc107;
	color: #856404;
	padding: 0.8em 2em;
	text-align: center;
	font-size: 0.9em;
	font-weight: 500;
}

	.disclaimer-banner p {
		margin: 0;
	}

	.disclaimer-banner strong {
		color: #664d03;
	}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #192024;
	color: #c5c7c8;
	padding: 1em 2em;
	z-index: 10001;
	display: none;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

	.cookie-banner p {
		margin: 0;
		display: inline;
		font-size: 0.9em;
	}

	.cookie-banner a {
		color: #629DD1;
	}

	.cookie-banner .button {
		margin-left: 1em;
		vertical-align: middle;
	}

	.cookie-banner-inner {
		max-width: 1200px;
		margin: 0 auto;
	}

/* FAQ */
.faq-item {
	border: solid 1px rgba(144, 144, 144, 0.25);
	border-radius: 6px;
	margin-bottom: 1em;
	overflow: hidden;
}

	.faq-question {
		background: rgba(144, 144, 144, 0.075);
		padding: 1em 1.5em;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 500;
		color: #666f77;
		margin: 0;
		transition: background-color 0.2s ease-in-out;
	}

		.faq-question:hover {
			background: rgba(144, 144, 144, 0.15);
		}

		.faq-question .faq-toggle {
			font-size: 1.2em;
			font-weight: 300;
			flex-shrink: 0;
			margin-left: 1em;
		}

	.faq-answer {
		padding: 0 1.5em;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease, padding 0.3s ease;
	}

	.faq-item.active .faq-answer {
		max-height: 500px;
		padding: 1em 1.5em;
	}

	.faq-item.active .faq-toggle {
		transform: rotate(45deg);
	}

/* Comparison Table */
.comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 0 0 2em 0;
}

	.comparison-table thead th {
		background: #192024;
		color: #fff;
		font-weight: 500;
		font-size: 0.85em;
		padding: 1em 1em;
		text-align: center;
		text-transform: uppercase;
		letter-spacing: 0.125em;
	}

		.comparison-table thead th:first-child {
			border-radius: 6px 0 0 0;
			text-align: left;
		}

		.comparison-table thead th:last-child {
			border-radius: 0 6px 0 0;
		}

		.comparison-table thead th.highlight {
			background: #629DD1;
		}

	.comparison-table tbody td {
		padding: 0.75em 1em;
		border-bottom: solid 1px rgba(144, 144, 144, 0.25);
		text-align: center;
	}

		.comparison-table tbody td:first-child {
			text-align: left;
			font-weight: 500;
			color: #666f77;
		}

	.comparison-table tbody tr:nth-child(2n + 1) {
		background-color: rgba(144, 144, 144, 0.075);
	}

	.comparison-table tbody tr:hover {
		background-color: rgba(98, 157, 209, 0.1);
	}

	.comparison-table .check {
		color: #4CAF50;
		font-weight: 700;
	}

	.comparison-table .cross {
		color: #e74c3c;
		font-weight: 700;
	}

	.comparison-table .highlight-col {
		background: rgba(98, 157, 209, 0.05);
	}

/* Review Cards */
.review-card {
	border: solid 1px rgba(144, 144, 144, 0.25);
	border-radius: 6px;
	padding: 2em;
	margin-bottom: 2em;
	background: rgba(255,255,255,0.5);
}

	.review-card .review-stars {
		color: #f5a623;
		font-size: 1.1em;
		margin-bottom: 0.5em;
	}

	.review-card .review-text {
		font-style: italic;
		margin-bottom: 1em;
		line-height: 1.75em;
	}

	.review-card .review-author {
		color: #666f77;
		font-weight: 500;
		font-size: 0.9em;
	}

	.review-card .review-author span {
		color: #bbb;
		font-weight: 300;
	}

/* Article Cards */
.article-card {
	border: solid 1px rgba(144, 144, 144, 0.25);
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
	background: #fff;
}

	.article-card:hover {
		box-shadow: 0 4px 20px rgba(0,0,0,0.1);
		transform: translateY(-2px);
	}

	.article-card .article-card-image {
		display: block;
		width: 100%;
		height: 200px;
		overflow: hidden;
	}

		.article-card .article-card-image img {
			width: 100%;
			height: 200px;
			object-fit: cover;
			display: block;
		}

	.article-card .article-card-content {
		padding: 1.5em;
	}

		.article-card .article-card-content h3 {
			margin-bottom: 0.5em;
		}

		.article-card .article-card-content h3 a {
			text-decoration: none;
			color: inherit;
		}

			.article-card .article-card-content h3 a:hover {
				color: #629DD1;
			}

		.article-card .article-card-content p {
			color: #555f66;
			font-size: 0.9em;
			margin: 0 0 1em 0;
		}

		.article-card .article-card-content .article-date {
			color: #bbb;
			font-size: 0.8em;
			margin: 0;
		}

/* Contact Form Success */
.contact-success {
	display: none;
	background: #d4edda;
	border: solid 1px #c3e6cb;
	border-radius: 6px;
	padding: 2em;
	text-align: center;
	color: #155724;
	margin: 2em 0;
}

	.contact-success h3 {
		color: #155724;
		margin-bottom: 0.5em;
	}

/* Article Page */
.article-page h1 {
	font-size: 2em;
	margin-bottom: 0.5em;
	text-transform: none;
	letter-spacing: 0;
}

.article-page .article-meta {
	color: #bbb;
	font-size: 0.85em;
	margin-bottom: 2em;
}

.article-page .article-featured-image {
	margin-bottom: 2em;
}

	.article-page .article-featured-image img {
		border-radius: 6px;
		width: 100%;
	}

.article-page h2 {
	margin-top: 2em;
}

.article-page h3 {
	margin-top: 1.5em;
}

/* Dark section fixes for FAQ */
.wrapper.style2 .faq-question {
	color: #fff;
	background: rgba(255,255,255,0.05);
}

	.wrapper.style2 .faq-question:hover {
		background: rgba(255,255,255,0.1);
	}

.wrapper.style2 .faq-answer {
	color: #c5c7c8;
	border-top: solid 1px rgba(255,255,255,0.1);
}

.wrapper.style2 .review-card {
	border-color: rgba(255,255,255,0.15);
	background: rgba(255,255,255,0.05);
}

	.wrapper.style2 .review-card .review-author {
		color: #fff;
	}

		.wrapper.style2 .review-card .review-author span {
			color: #a3a5a7;
		}

	.wrapper.style2 .review-card .review-text {
		color: #c5c7c8;
	}

/* Features grid */
.features-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1em;
}

	.features-grid .feature-item {
		flex: 1 1 250px;
		max-width: 33.33%;
		padding: 0 1em;
		margin-bottom: 2em;
	}

@media (max-width: 980px) {
	.features-grid .feature-item {
		max-width: 50%;
	}
}

@media (max-width: 736px) {
	.features-grid .feature-item {
		max-width: 100%;
	}
	.cookie-banner {
		padding: 1em;
		text-align: center;
	}
	.cookie-banner p {
		display: block;
		margin-bottom: 0.5em;
	}
	.cookie-banner .button {
		margin-left: 0;
	}
}