/* Terms & Conditions Styling */

.tc-section {
	padding: 60px 0;
	background-color: #f8f9fa;
	min-height: calc(100vh - 400px);
}

.tc-wrapper {
	background: white;
	padding: 50px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	animation: fadeInUp 0.8s ease-out;
}

.tc-main-heading {
	font-size: 36px;
	font-weight: 700;
	color: #29610a;
	margin-bottom: 20px;
	border-bottom: 3px solid #51cf0c;
	padding-bottom: 15px;
	letter-spacing: 1px;
}

.tc-intro-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 40px;
	font-style: italic;
	border-left: 4px solid #51cf0c;
	padding-left: 20px;
	background-color: #f0fce4;
	padding: 20px;
	border-radius: 4px;
	letter-spacing: 1px;
}

.tc-section-block {
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
}

.tc-section-block:last-child {
	border-bottom: none;
}

.tc-section-heading {
	font-size: 22px;
	font-weight: 600;
	color: #29610a;
	margin-bottom: 15px;
	margin-top: 0;
	letter-spacing: 1px;
}

.tc-paragraph {
	font-size: 15px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.tc-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 20px;
}

.tc-list li {
	padding: 10px 0 10px 30px;
	position: relative;
	color: #666;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 1px;
}

.tc-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #51cf0c;
	font-weight: bold;
	font-size: 18px;
}

.tc-contact-info {
	background-color: #f0fce4;
	padding: 20px;
	border-radius: 6px;
	border-left: 4px solid #51cf0c;
	margin-top: 15px;
	margin-bottom: 25px;
}

.tc-contact-info p {
	margin: 8px 0;
	color: #555;
	font-size: 15px;
	letter-spacing: 1px;
}

.tc-contact-info strong {
	color: #29610a;
}

.tc-last-updated {
	text-align: center;
	color: #888;
	font-size: 14px;
	font-style: italic;
	letter-spacing: 1px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Tablet Responsive */
@media (max-width: 768px) {
	.tc-section {
		padding: 40px 0;
	}

	.tc-wrapper {
		padding: 30px;
	}

	.tc-main-heading {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.tc-section-heading {
		font-size: 18px;
	}

	.tc-paragraph {
		font-size: 14px;
	}

	.tc-list li {
		padding: 8px 0 8px 25px;
		font-size: 14px;
	}
}

/* Mobile Responsive */
@media (max-width: 576px) {
	.tc-section {
		padding: 25px 0;
	}

	.tc-wrapper {
		padding: 20px;
		border-radius: 6px;
	}

	.tc-main-heading {
		font-size: 24px;
		margin-bottom: 12px;
	}

	.tc-intro-text {
		font-size: 14px;
		padding: 15px;
		margin-bottom: 25px;
	}

	.tc-section-heading {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.tc-paragraph {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.tc-list li {
		padding: 6px 0 6px 22px;
		font-size: 13px;
	}

	.tc-section-block {
		margin-bottom: 25px;
		padding-bottom: 20px;
	}

	.tc-contact-info {
		padding: 15px;
	}

	.tc-contact-info p {
		font-size: 13px;
		margin: 6px 0;
	}
}
