		.social-icons {
			display: flex;               /* arrange items in a row */
			justify-content: center;     /* center horizontally */
			align-items: center;         /* center vertically if needed */
			gap: 30px;                   /* space between icons */
			margin-top: 50px;            /* optional spacing from top */
		}

		.social-icons a {
			font-size: 40px;    /* icon size */
			color: #444;
			text-decoration: none;
		}

		.social-icons a:hover {
			color: #000;
			transform: scale(1.2);   /* small hover effect */
			transition: 0.2s;
		}