* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f5f5f5;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.cw-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hero Section */
.cw-hero {
	text-align: center;
	padding: 40px 30px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.cw-hero h3 {
	text-align: left;
	font-size: 22px;
	margin-bottom: 15px;
}

.cw-hero p {
	text-align: justify;
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 25px;
}

h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
	color: #2c3e50;
	line-height: 1.2;
}

.cw-subtitle {
	font-size: 1.3em;
	color: #e74c3c;
	margin-bottom: 30px;
	font-weight: 600;
}

.cw-description {
	font-size: 1.1em;
	color: #555;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Thumbnail */
.cw-thumb-wrap {
	margin-bottom: 30px;
}

.cw-thumb-wrap a {
	display: inline-block;
	transition: transform 0.3s ease;
}

.cw-thumb-wrap a:hover {
	transform: scale(1.02);
}

.cw-thumb-wrap img {
	max-width: 100%;
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.cw-cta-btn {
	display: inline-block;
	background-color: #27ae60;
	color: #fff;
	padding: 18px 40px;
	font-size: 1.3em;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
	margin-top: 20px;
}

.cw-cta-btn:hover {
	background-color: #2ecc71;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Footer */
footer {
	background-color: #2c3e50;
	color: #ecf0f1;
	padding: 40px 0;
	margin-top: 60px;
}

.cw-disclaimer-section {
	margin-bottom: 20px;
	padding: 0 20px;
}

.cw-disclaimer-section p {
	font-size: 0.9em;
	line-height: 1.6;
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}

.cw-disclaimer-section strong {
	color: #3498db;
}

.cw-google-disclaimer {
	text-align: center;
	margin: 30px 0;
	padding: 20px;
	border-top: 1px solid #34495e;
	border-bottom: 1px solid #34495e;
}

.cw-google-disclaimer p {
	font-size: 0.9em;
	margin: 5px 0;
}

.cw-copyright {
	text-align: center;
	margin-top: 20px;
	font-size: 1em;
}

/* Footer Links */
.cw-footer-links {
	text-align: center;
	margin-bottom: 30px;
	padding: 20px;
}

.cw-footer-links a {
	color: #3498db;
	text-decoration: none;
	margin: 0 15px;
	font-size: 0.9em;
	transition: color 0.3s ease;
}

.cw-footer-links a:hover {
	color: #2980b9;
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.cw-container {
		padding: 15px;
	}

	.cw-hero {
		padding: 30px 20px;
	}

	h1 {
		font-size: 1.8em;
		margin-bottom: 15px;
	}

	.cw-subtitle {
		font-size: 1.1em;
		margin-bottom: 20px;
	}

	.cw-description {
		font-size: 0.95em;
		margin-bottom: 20px;
		padding: 0 10px;
	}

	.cw-thumb-wrap {
		margin-bottom: 25px;
	}

	.cw-cta-btn {
		font-size: 1em;
		padding: 15px 30px;
		width: 90%;
		max-width: 300px;
	}

	footer {
		padding: 30px 0;
	}

	.cw-footer-links a {
		display: block;
		margin: 10px 0;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.5em;
	}

	.cw-subtitle {
		font-size: 1em;
	}

	.cw-description {
		font-size: 0.9em;
	}
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.442);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader-wrap {
	width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	border-radius: 30px;
}

.bg-white {
	background-color: white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.loader {
	width: 148px;
	height: 148px;
	background-image: url('../img/loading.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	animation: spin 2s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.hidden {
	display: none;
}

.invisible {
	opacity: 0;
	visibility: hidden;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}

.visible {
	opacity: 1;
	visibility: visible;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}
