/* Page Title Area matching the site style */
.page-header {
	display: flex;
	align-items: center;
	border-bottom: 2px solid #205081;
	padding-bottom: 12px;
	margin-bottom: 30px;
}
.page-header h2 {
	font-size: 20px;
	color: #205081;
	font-weight: 700;
	position: relative;
	padding-left: 12px;
}
.page-header h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 4px;
	height: 16px;
	background-color: #205081;
}

/* Notice Card Box */
.submission-card {
	background: linear-gradient(135deg, #f8fbff 0%, #f0f5fc 100%);
	border: 1px solid #d0e1f9;
	border-radius: 12px;
	padding: 50px 30px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(32, 80, 129, 0.05);
	margin-bottom: 40px;
}

.icon-wrapper {
	width: 70px;
	height: 70px;
	background-color: #205081;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	box-shadow: 0 4px 10px rgba(32, 80, 129, 0.2);
}

.icon-wrapper svg {
	width: 35px;
	height: 35px;
	fill: #ffffff;
}

.submission-card h3 {
	font-size: 22px;
	color: #1a3c5e;
	margin-bottom: 12px;
	font-weight: 700;
}

.submission-card p {
	font-size: 15px;
	color: #555555;
	margin-bottom: 25px;
}

/* Email Highlight Box */
.email-box {
	display: inline-flex;
	align-items: center;
	background-color: #ffffff;
	border: 2px solid #205081;
	padding: 14px 28px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	margin-top: 10px;
}

.email-box svg {
	width: 20px;
	height: 20px;
	fill: #205081;
	margin-right: 12px;
}

.email-box a {
	font-size: 18px;
	font-weight: 700;
	color: #205081;
	text-decoration: none;
}

.email-box a:hover {
	text-decoration: underline;
}

/* Information Guide List */
.guide-section {
	background-color: #fafafa;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px 30px;
}

.guide-section h4 {
	font-size: 15px;
	color: #333333;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.guide-section h4::before {
	content: "i";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #205081;
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	line-height: 18px;
	border-radius: 50%;
	margin-right: 8px;
}

.guide-list {
	list-style: none;
	padding-left: 0;
}

.guide-list li {
	font-size: 14px;
	color: #666666;
	margin-bottom: 8px;
	padding-left: 15px;
	position: relative;
}

.guide-list li::before {
	content: "-";
	position: absolute;
	left: 0;
	color: #205081;
	font-weight: bold;
}
