* {
	box-sizing: border-box;
}


body {
	font-family: Arial, Helvetica, sans-serif;
}

	.info-box {
		margin-top: 20px;
		padding: 10px;
		border: 1px solid #ccc;
		font-family: Arial, sans-serif;
	}

	.adinfo-box {
		margin-top: 20px;
		padding: 20px;
		border: 7px double #ffa0a0;
		font-family: Arial, sans-serif;
		text-align: -webkit-center;
		font-size: larger;
	}

	.tltpA {
		transition: all 0.3s ease; /* smooth animation */
	}

	.tltpA:hover {
		background-color: skyblue;	/* background turns skyblue */
		padding: 5px;				/* adds spacing around text */
		font-weight: bolder;		/* makes text bold */
	}

	.sticky-div {
		width: 80%;
		margin: -7px auto; /* centers the div */
		background-color: lavender;
		position: sticky;
		top: 0;
		padding: 20px;
		text-align: center;
		border-bottom-left-radius: 40px; /* rounded bottom left */ 
		border-bottom-right-radius: 40px; /* rounded bottom right */
	}

	.label {
		margin: 5px 15px;
		padding: 10px 20px;
		background: white;
		color: black;
		border-radius: 8px;
		cursor: pointer;
		transition: all 0.3s ease;
		font-weight: bold;
	}

	.label:hover {
		background: dodgerblue;
		color: white;
		transform:
		scale(1.1);
	}

	.LbL2Hdn {
		display: none;
	}

	/* === Portrait orientation === */
	@media screen and (orientation: portrait) and (min-width: 360px) {
		.LbL2Hdn:nth-child(1) { display: inline-block; }
	}

	@media screen and (orientation: portrait) and (min-width: 720px) {
		.LbL2Hdn:nth-child(2) { display: inline-block; }
	}

	@media screen and (orientation: portrait) and (min-width: 1080px) {
		.LbL2Hdn:nth-child(3) { display: inline-block; }
	}

	@media screen and (orientation: portrait) and (min-width: 1440px) {
		.LbL2Hdn:nth-child(4) { display: inline-block; }
	}

	@media screen and (orientation: portrait) and (min-width: 1800px) {
		.LbL2Hdn:nth-child(5) { display: inline-block; }
	}

	/* === Landscape orientation === */
	@media screen and (orientation: landscape) and (min-width: 360px) {
		.LbL2Hdn:nth-child(1) { display: inline-block; }
	}

	@media screen and (orientation: landscape) and (min-width: 720px) {
		.LbL2Hdn:nth-child(2) { display: inline-block; }
	}

	@media screen and (orientation: landscape) and (min-width: 1080px) {
		.LbL2Hdn:nth-child(3) { display: inline-block; }
	}

	@media screen and (orientation: landscape) and (min-width: 1440px) {
		.LbL2Hdn:nth-child(4) { display: inline-block; }
	}

	@media screen and (orientation: landscape) and (min-width: 1800px) {
		.LbL2Hdn:nth-child(5) { display: inline-block; }
	}

	.adsLn {
		width: 70%;
	}

	.spAdCrdHdr {
		height: 40px;
		flex: 1;              /* equal width for all spans */
		margin: 2rem;         /* spacing around each span */
		text-align: center;   /* optional: center text inside spans */
		border-radius: 16px;
		font-weight: bold;
		font-size: large;
		background-color: white;
		padding: 1rem 0 2rem 0;
	}

	.dvAdCrdGA {
		width: 80%;
		display: flex;
		justify-content: space-between; /* distributes spans evenly */
		margin: 0 auto; /* centers the div horizontally */
		background-color: #F0FFF0; /* honeydew a very pale green, almost white, airy and subtle. */
		padding: 1rem; /* optional: adds space inside the div */
		border-radius: 20px; /* optional: rounded corners */
	}

	.spAdCrdGA {
		height: 480px;
		flex: 1;              /* equal width for all spans */
		margin: 1rem;         /* spacing around each span */
		text-align: center;   /* optional: center text inside spans */
		border-radius: 16px;
		background-color: #C1E1C1;	/* light sage muted green that feels natural and calming. */
	}
	
	/* Glow effect on hover */ 
	.spAdCrdGA:hover {
		box-shadow: 0 0 15px rgba(144, 238, 144, 0.6); /* light green glow */
		transform: translateY(-5px); /* subtle lift */
	}

	.dvAdCrdSA {
		width: 80%;
		display: flex;
		justify-content: space-between; /* distributes spans evenly */
		margin: 0 auto; /* centers the div horizontally */
		background-color: #E6E6FA; /* adds lavender background */
		padding: 1rem; /* optional: adds space inside the div */
		border-radius: 20px; /* optional: rounded corners */
	}

	.spAdCrdSA {
		height: 340px;
		flex: 1;              /* equal width for all spans */
		margin: 1rem;         /* spacing around each span */
		text-align: center;   /* optional: center text inside spans */
		border-radius: 16px;
		background-color: #fff8dc; /* cornsilk: soft, warm tone */;		
	}
	
	/* Glow effect on hover */ 
	.spAdCrdSA:hover {
		box-shadow: 0 0 15px rgba(186, 85, 211, 0.6); /* orchid glow */
		transform: translateY(-5px); /* subtle lift */
	}

	.dvAdCrdFA {
		width: 80%;
		display: flex;
		justify-content: space-between; /* distributes spans evenly */
		margin: 0 auto; /* centers the div horizontally */
		background-color: #B0E0E6;	/* soft blue that complements mint cream and adds cool contrast */
		padding: 1rem; /* optional: adds space inside the div */
		border-radius: 20px; /* optional: rounded corners */
	}

	.spAdCrdFA {
		height: 150px;
		flex: 1;              /* equal width for all spans */
		margin: 1rem;         /* spacing around each span */
		text-align: center;   /* optional: center text inside spans */
		background-color: #F5FFFA; /* adds mint cream very light, refreshing green that feels airy background */
		border-radius: 16px;
	}
	
	/* Glow effect on hover */ 
	.spAdCrdFA:hover {
		box-shadow: 0 0 15px rgba(72, 209, 204, 0.6); /* medium turquoise glow */
		transform: translateY(-5px); /* subtle lift */
	}