:root {
--primary-color: #0067b8;
--text-color: #323130;
--secondary-text: #605e5c;
--background-color: #f5f7fa;
--card-background: #ffffff;
--border-color: #e1e5ea;
--shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
	font-family: "Inter", sans-serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		#f8fafc 0%,
		#eef2f7 100%
	);
	color: var(--text-color);
}

.container {
	width: 100%;
	max-width: 700px;
}

.notice-card {
	background-color: var(--card-background);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	box-shadow: var(--shadow);
	font-size: 2.0 rem;
}

.logo {
display: block;
max-width: 240px;
width: 30%;
height: auto;
margin: 0 0;
}

.oglogo {
display: block;
max-width: 240px;
width: 30%;
height: auto;
margin: 0 auto 2rem;
opacity: 0.3;
}

.comboTextImgLine {
  display: flex;         /* Places items side-by-side */
  align-items: flex-start;   /* Centers the image and text vertically */
  align-content: center;
  justify-content: center;
  gap: 10px;             /* Adds a clean space between image and text */
}

.inline-text {
  margin: 0;             /* Removes default paragraph spacing */
}

h1 {
	color: #A60002;
	font-size: 2.7rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

h2 {
	align-self: center;
	font-size: 1.8rem;
	font-weight: 700;
}

p {
	font-size: 1.4rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.thank-you {
margin-top: 1.5rem;
font-weight: 600;
color: var(--secondary-text);
}

@media (max-width: 768px) {
body {
padding: 1rem;
}

.notice-card {
padding: 2rem;
}

.logo {
max-width: 180px;
}

h1 {
font-size: 1.75rem;
}

h2 {
font-size: 1.0rem;
}

p {
font-size: 1rem;
}
}

@media (max-width: 480px) {
.notice-card {
padding: 1.5rem;
border-radius: 16px;
}

h1 {
font-size: 1.5rem;
}

h2 {
font-size: 0.9rem;
}

p {
line-height: 1.6;
}
}
