/* Footer */
			.footer {
				background-color: var(--primary-color);
				color: var(--light);
				padding: 4rem 0 2rem;
				margin-top: 3rem;
			}

			.footer-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
				gap: 3rem;
				margin-bottom: 3rem;
			}

			.footer-newsletter {
				grid-column: 1 / -1;
				text-align: center;
				margin-bottom: 3rem;
			}

			.footer-newsletter form {
				display: flex;
				max-width: 500px;
				margin: 1rem auto;
			}

			.footer-newsletter input {
				flex-grow: 1;
				padding: 0.75rem;
				border: none;
				border-radius: 4px 0 0 4px;
			}

			.footer-newsletter button {
				padding: 0.75rem 1.5rem;
				background-color: var(--accent);
				color: white;
				border: none;
				border-radius: 0 4px 4px 0;
				cursor: pointer;
			}

			.footer-bottom {
				border-top: 1px solid rgba(255,255,255,0.1);
				padding-top: 2rem;
				text-align: center;
			}

			/* Responsive Design */
			@media (max-width: 768px) {

				.footer-newsletter form {
					flex-direction: column;
					gap: 1rem;
				}

				.footer-newsletter input,
				.footer-newsletter button {
					width: 100%;
					border-radius: 4px;
				}
			}