/* Terms of Service Specific Styles */
.terms-container {
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-top: 20px;
}

.last-updated {
	text-align: right;
	margin-bottom: 20px;
	color: #6c757d;
	font-style: italic;
}

.terms-section {
	margin-bottom: 30px;
	border-bottom: 1px solid #e9ecef;
	padding-bottom: 20px;
}

.terms-section:last-child {
	border-bottom: none;
}

.terms-section h3 {
	color: #031652;
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 600;
}

.terms-section h3 i {
	margin-right: 10px;
	color: #428713;
}

.terms-section h4 {
	color: #333;
	font-size: 18px;
	margin: 15px 0 10px;
	font-weight: 600;
}

.terms-section h4 i {
	margin-right: 8px;
	color: #031652;
}

.terms-section ul {
	padding-left: 20px;
	margin-bottom: 15px;
}

.terms-section ul li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.terms-alert {
	background-color: #fff3cd;
	border-left: 4px solid #ffc107;
	padding: 15px;
	margin: 15px 0;
	border-radius: 5px;
}

.terms-note {
	background-color: #e3f2fd;
	border-left: 4px solid #2196f3;
	padding: 15px;
	margin: 15px 0;
	border-radius: 5px;
}

.terms-warning {
	background-color: #f8d7da;
	border-left: 4px solid #dc3545;
	padding: 15px;
	margin: 15px 0;
	border-radius: 5px;
}

.terms-definitions li {
	margin-bottom: 10px;
}

.user-groups {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 15px 0;
}

.user-group {
	flex: 1 0 calc(33.333% - 15px);
	min-width: 250px;
	background-color: #f8f9fa;
	border-radius: 5px;
	padding: 15px;
	border-left: 4px solid #031652;
}

.user-group h4 {
	margin-top: 0;
	color: #031652;
}

.prohibited-conduct {
	background-color: #f8f9fa;
	border-radius: 5px;
	padding: 15px;
	margin: 15px 0;
	border-left: 4px solid #dc3545;
}

.permitted-uses {
	color: #28a745;
}

.account-responsibilities, .our-actions, .ip-ownership, .ip-license, .user-content, 
.data-protection, .data-security, .service-availability, .service-modifications, 
.terms-modifications, .specific-limitations, .termination-by-us, .termination-by-user, 
.post-termination, .governing-law, .jurisdiction, .dispute-resolution, 
.severability, .waiver, .assignment, .entire-agreement {
	background-color: #f8f9fa;
	border-radius: 5px;
	padding: 15px;
	margin: 15px 0;
}

.disclaimer {
	background-color: #f8f9fa;
	border-radius: 5px;
	padding: 15px;
	margin: 15px 0;
	font-weight: bold;
}

.maintenance-notice {
	background-color: #d4edda;
	border-left: 4px solid #28a745;
	padding: 15px;
	margin: 15px 0;
	border-radius: 5px;
}

.contact-info {
	background-color: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
	border-left: 4px solid #428713;
}

.contact-info a, .terms-link {
	color: #428713;
	text-decoration: none;
}

.contact-info a:hover, .terms-link:hover {
	text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.terms-container {
		padding: 20px 15px;
	}
	
	.terms-section h3 {
		font-size: 20px;
	}
	
	.terms-section h4 {
		font-size: 16px;
	}
	
	.user-group {
		flex: 1 0 100%;
	}
}