:root {
	--primary-color: #00B3EF;
    --secondary-color: #2c3e50;
    --accent-color: #00bfff;
	--light-bg: #f9f9f9;
	--dark-text: #333;
	--light-text: #fff;
	--border-radius: 8px;
	--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.sel {
	background-color: var(--light-bg);
	color: var(--dark-text);
	line-height: 1.6;
	padding: 20px;
}        
.sel-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}        
.sel-heading {
	color: var(--secondary-color);
	margin-bottom: 20px;
	font-size: 2.2rem;
	position: relative;
	padding-bottom: 10px;
}
.sel-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background-color: var(--primary-color);
}        
.sel-intro {
	margin-bottom: 30px;
	font-size: 1.1rem;
}        
.sel-card {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 25px;
	margin-bottom: 30px;
}        
.sel-card-title {
	color: var(--secondary-color);
	margin-bottom: 15px;
	font-size: 1.4rem;
}        
.sel-bullet-list {
	list-style-type: none;
	padding-left: 5px;
}        
.sel-bullet-item {
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
}        
.sel-bullet-item::before {
	content: '•';
	color: var(--primary-color);
	font-size: 1.5rem;
	position: absolute;
	left: 0;
	top: -5px;
}        
.sel-numbered-list {
	list-style-type: none;
	counter-reset: sel-counter;
}        
.sel-numbered-item {
	margin-bottom: 15px;
	position: relative;
	padding-left: 40px;
}        
.sel-numbered-item::before {
	content: counter(sel-counter);
	counter-increment: sel-counter;
	background-color: var(--primary-color);
	color: white;
	font-weight: bold;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
}        
.sel-button {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 12px 25px;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: bold;
	margin-top: 20px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}        
.sel-button:hover {
	background-color: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}        
.sel-form-wrapper {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 30px;
	margin-top: 40px;
	display: none;
}        
.sel-form-wrapper-active {
	display: block;
}        
.sel-form-heading {
	color: var(--secondary-color);
	margin-bottom: 25px;
	font-size: 1.8rem;
	text-align: center;
	position: relative;
	padding-bottom: 10px;
}        
.sel-form-heading::before {
	content: '🔶';
	margin-right: 10px;
}        
.sel-form-block {
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}        
.sel-form-block:last-child {
	border-bottom: none;
}        
.sel-block-title {
	font-size: 1.3rem;
	color: var(--secondary-color);
	margin-bottom: 15px;
}        
.sel-input-row {
	margin-bottom: 20px;
}        
.sel-input-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}        
.sel-text-input, .sel-textarea, .sel-select-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-size: 1rem;
}        
.sel-textarea {
	min-height: 120px;
	resize: vertical;
}        
.sel-checkbox-container {
	margin-top: 10px;
}        
.sel-checkbox-row {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	cursor: pointer;
}        
.sel-checkbox {
	margin-right: 10px;
	width: 18px;
	height: 18px;
}        
.sel-file-input {
	margin-top: 10px;
}        
.sel-declaration-container {
	background-color: #f8f9fa;
	padding: 15px;
	border-radius: var(--border-radius);
	margin-bottom: 20px;
}        
.sel-submit-button {
	background-color: var(--primary-color);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all 0.3s ease;
}        
.sel-submit-button:hover {
	background-color: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}        
@media (max-width: 768px) {
	.sel-container {
		padding: 10px;
	}        
	.sel-card, .sel-form-wrapper {
		padding: 15px;
	}        
	.sel-heading {
		font-size: 1.8rem;
	}        
	.sel-form-heading {
		font-size: 1.5rem;
	}
}