
	.nav-buttons {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.btn-custom {
		font-size: clamp(0.8rem, 1.4vw, 0.95rem);
		font-weight: 500;
		padding: 0.5rem 1rem;
		border: 1px solid #022c5c;
		color: #fff;
		border-radius: 6px;
		background: #022c5c;
		text-decoration: none;
		transition: all 0.3s ease;
		white-space: nowrap;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 38px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	}

	.btn-custom:hover {
		color: #fff;
		background: #033d73;
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	}

	.btn-custom:focus {
		outline: 2px solid #022c5c;
		outline-offset: 2px;
	}

	.btn-download {
		background: #022c5c;
		border-color: #022c5c;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	}

	.btn-download:hover {
		background: #033d73;
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
	}
