body {
	background: linear-gradient(to right, #2980B9, #6DD5FA, #FFFFFF, #6DD5FA, #2980B9);
}

.Introduction {
	border: 3px solid #2d6a4f;
	background: #ffffff; /* Fallback: pure white for browsers that don't support gradients */
	background: radial-gradient(
	  circle, 
	  rgba(255, 255, 255, 1) 0%,    /* Center: white */
	  rgba(152, 220, 255, 1) 26%,   /* Light blue */
	  rgba(102, 194, 255, 1) 38%,   /* Medium blue */
	  rgba(40, 168, 252, 0.6) 70%,  /* darker blue, slightly transparent */
      rgba(255, 255, 255, 0.2) 100% /* edge: very light/faded */
	);
	border-radius: 20px;
	padding: 30px 40px;
	max-width: 600px;
	margin: 50px auto;
	text-align: center;
	font-family: "Poppins", "Segoe UI", sans-serif;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.img {
	border-radius: 15px; 
	border: 2px solid #ccc; 
	width: 100%; 
	max-width: 400px; 
	display: block;
	margin: 1rem auto; 
}

footer {
    /* Remove: position: fixed; bottom: 0; left: 0; width: 100%; */
    background: radial-gradient(
      circle, 
      rgba(255, 255, 255, 1) 0%,    
      rgba(152, 220, 255, 1) 26%,   
      rgba(102, 194, 255, 1) 38%,   
      rgba(40, 168, 252, 0.6) 70%,  /* darker blue, slightly transparent */
      rgba(255, 255, 255, 0.2) 100% /* edge: very light/faded */ 
    );
    border-top: 3px solid #2d6a4f;
    padding: 25px 0;
    text-align: center;
    font-family: "Poppins", "Segoe UI", sans-serif;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

html, body {
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	color-scheme: light;
}

footer p {
	margin: 8px 0;
	font-size: 1em;
}

footer a {
	color: #1b4332;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease, text-decoration 0.2s ease;
}









