/* SECTION TELECHARGER L'APP */
.download-app {
	background: #ffffff;
	padding: 60px 20px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.download-wrapper {
	max-width: 1100px;
	margin: auto;
}

.download-app h2 {
	font-size: 22px;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	color: #2b2628;
	margin-bottom: 10px;
}

.download-subtitle {
	font-size: 15px;
	color: #555;
	margin-bottom: 25px;
}

.store-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.store-btn img {
	height: 48px;
	transition: transform 0.2s, opacity 0.2s;
}

.store-btn:hover img {
	transform: translateY(-3px);
	opacity: 0.85;
}

/* FOOTER */
.footer {
	background: #111;
	padding: 40px 20px 25px;
	color: #fff;
	text-align: center;
}

.footer-wrapper {
	max-width: 1100px;
	margin: auto;
}

.footer-links {
	margin-bottom: 25px;
}

.footer-links a {
	color: #ddd;
	margin: 0 10px;
	font-size: 14px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.footer-links a:hover {
	opacity: 0.7;
}

.footer-copy p {
	font-size: 13px;
	color: #aaa;
	margin: 4px 0;
}

/* RESPONSIVE */
@media ( max-width : 600px) {
	.store-btn img {
		height: 42px;
	}
	.footer-links a {
		display: block;
		margin: 6px 0;
		font-size: 14px;
	}
}