:root {
	--primary-dark: #1a3a5f;
	/* Navy Blue - for headers/text */
	--primary-action: #0056b3;
	/* Royal Blue - for main buttons */
	--secondary-blue: #e7f1ff;
	/* Light Blue - for backgrounds/hover */
	--accent-blue: #00b4d8;
	/* Cyan Blue - for highlights */
	--border-color: #d1d9e6;
	/* Soft Blue-Gray - for borders */
	--text-main: #2c3e50;
	--white: #ffffff;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	background-color: golden;
}

/* 1) Top Left Image */
.img {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
}

/* 2) Centered Logo */
.logo {
	text-align: center;
	margin-bottom: 20px;
}

h1 {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-dark);
	margin: 0;
	text-align: center;
}

/* 3) Top Right Signup Links - Professional Gradients */
.signup {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	gap: 8px;
}

.signup a {
	text-decoration: none;
	padding: 10px 20px;
	/* Deep Blue to Professional Blue Gradient */
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-action));
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	border-radius: 50px;
	box-shadow: 0 4px 10px rgba(26, 58, 95, 0.2);
	transition: all 0.3s ease;
}

.signup a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(26, 58, 95, 0.3);
	filter: brightness(1.1);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.product {
	background-color: var(--white);
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.product ul {
	list-style-type: none;
	padding-top: 10px;
	margin: 10px 0;
}

.link {
	text-decoration: none;
	color: var(--primary-action);
	font-weight: 600;
	transition: color 0.3s ease;
	text-align: center;

	transition: all 0.3s ease;
}

.link a {
	text-decoration: none;
	color: var(--primary-action);
	font-weight: 600;
	font-size: 20px;
	transition: color 0.3s ease;
	text-align: center;
	border: 2px solid var(--primary-action);
	box-shadow: 0 4px 10px rgba(26, 58, 95, 0.2);
	transition: all 0.3s ease;
	padding: 10px 20px;
	border-radius: 50px;
}

.link:hover {
	color: var(--accent-blue);
}

.footer {
	text-align: center;
	padding: 20px 0;
	color: var(--text-main);
	font-size: 14px;
	border-top: 1px solid var(--border-color);
	margin-top: 40px;
}